Fixes Updated chrome - now ui.New fails to start #184 (#185) #44
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: CI Pipeline | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Chrome | |
run: | | |
sudo apt-get update | |
sudo apt-get install -yqq google-chrome-stable | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.16' | |
- name: Run tests | |
run: go test -v -race ./... | |
- name: Build examples | |
env: | |
CGO_ENABLED: 0 | |
run: | | |
go build -o example-hello ./examples/hello | |
go build -o example-stopwatch ./examples/stopwatch | |
go build -o example-counter ./examples/counter |