Skip to content

Commit

Permalink
.github/workflows: Revert back to Go 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Dec 2, 2022
1 parent 4f5cb8a commit ee78879
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/platform_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -44,19 +44,19 @@ 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:
GOOS: js
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' }}

0 comments on commit ee78879

Please sign in to comment.