Skip to content

Commit

Permalink
Add automated testing of fyne develop branch every day at 4am UTC.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric BAIL committed Dec 17, 2023
1 parent 9df5499 commit b2446e0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/fyne-qa-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run test on fyne development branch every day

on:
schedule:
- cron: "0 4 * * *"

jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: WillAbides/[email protected]
with:
go-version: '1.21'

- name: Install fyne from develop branch
run: |
sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
go install fyne.io/fyne/v2/cmd/fyne@develop
go get fyne.io/fyne/v2/cmd/fyne@develop
- name: Run test
run: go test -tags network ./...

- name: Build the application with fyne
run: fyne package

0 comments on commit b2446e0

Please sign in to comment.