e12142633a
CI / check-and-test (pull_request) Failing after 20s
Match steamcache2: trigger check-and-test on pull_request and push to the default branch. Tests passed on 1.26.0.
19 lines
352 B
YAML
19 lines
352 B
YAML
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
check-and-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: actions/setup-go@main
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- run: go mod tidy
|
|
- run: go build ./...
|
|
- run: go test -race -v -shuffle=on ./...
|