Skip to content

Fixes Updated chrome - now ui.New fails to start #184 (#185) #44

Fixes Updated chrome - now ui.New fails to start #184 (#185)

Fixes Updated chrome - now ui.New fails to start #184 (#185) #44

Workflow file for this run

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