diff --git a/.github/workflows/platform_tests.yml b/.github/workflows/platform_tests.yml index ecf9472e3b..b3ae4de136 100644 --- a/.github/workflows/platform_tests.yml +++ b/.github/workflows/platform_tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.14, 1.19] + go-version: [1.14, 1.17] os: [ubuntu-latest, windows-latest, macos-latest] steps: @@ -44,7 +44,7 @@ jobs: uses: shogo82148/actions-goveralls@v1 with: path-to-profile: coverage.out - if: ${{ runner.os == 'Linux' && matrix.go-version == '1.19' }} + if: ${{ runner.os == 'Linux' && matrix.go-version == '1.17' }} - name: Build WebAssembly binary env: @@ -52,11 +52,11 @@ jobs: GOARCH: wasm working-directory: cmd/fyne_demo run: go build - if: ${{ matrix.go-version == '1.19' }} + if: ${{ matrix.go-version == '1.17' }} - name: Build GopherJS and Wasm full website run: | go install github.com/gopherjs/gopherjs@latest go install ./cmd/fyne cd cmd/fyne_demo && fyne package --target=web - if: ${{ matrix.go-version == '1.19' && runner.os == 'Linux' }} + if: ${{ matrix.go-version == '1.17' && runner.os == 'Linux' }}