Fixup glfw races in app package by respecting the ci flag we removed #3073
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Web Tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
web_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Get dependencies | |
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev | |
- name: Build WebAssembly binary | |
env: | |
GOOS: js | |
GOARCH: wasm | |
working-directory: cmd/fyne_demo | |
run: go build |