Updated README.md to reflect the new ability to set task options. #18
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
# Github workflow syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
# branches-ignore: | |
# - main | |
# - "releases/**" | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: | |
- main | |
- "releases/**" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21" | |
- name: Install dependencies | |
run: go mod download -x | |
- name: Run tests | |
run: go test -v -p 1 -count=1 -race -cover ./... |