Update github.com/chromedp/cdproto digest to a72e670 #309
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: Testing | |
on: | |
push: | |
branches: | |
- "**" | |
paths: | |
- "**/*.go" | |
- "go.mod" | |
- "go.sum" | |
- "Makefile" | |
- ".github/workflows/testing.yml" | |
pull_request: | |
branches: | |
- main | |
- develop | |
types: [ opened, synchronize, reopened ] | |
paths: | |
- "**/*.go" | |
- "go.mod" | |
- "go.sum" | |
- "Makefile" | |
- ".github/workflows/testing.yml" | |
jobs: | |
test: | |
name: Testing | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
go: [ "1.18", "1.19" ] | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Set up Chrome | |
uses: browser-actions/setup-chrome@latest | |
with: | |
chrome-version: stable | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Cache go module | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
~/Library/Caches/go-build | |
~\AppData\Local\go-build | |
~\go\pkg\mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Run test | |
env: | |
CGO_ENABLED: 1 | |
run: | | |
go test -v -race -cover -covermode=atomic ./... |