Merge pull request #1218 from sosacrazy126/main #385
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 Build | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- 'patterns/**' | |
- '**/*.md' | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- 'patterns/**' | |
- '**/*.md' | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: ./go.mod | |
- name: Run tests | |
run: go test -v ./... |