v1.0.1 #7
Workflow file for this run
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: Go Tests | |
on: | |
push: | |
branches: | |
- main # Run tests when changes are pushed to the 'main' branch | |
pull_request: | |
branches: | |
- main # Run tests for pull requests targeting the 'main' branch | |
release: | |
types: | |
- created # Run tests when a new release is created | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23.4 | |
- name: Run tests | |
run: | | |
go test ./... -test.skip TestLookupCompound -v # Run all tests in verbose mode |