ignore some of the .claude directory (#35) #55
This file contains hidden or 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 | |
| - "test_*" | |
| - "test-*" | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Read Go versions | |
| run: echo "##[set-output name=go_version;]$(cat .github/versions/go)" | |
| id: go_versions | |
| - name: Set up Go | |
| uses: actions/setup-go@v6.4.0 | |
| with: | |
| go-version: ${{ steps.go_versions.outputs.go_version }} | |
| id: go | |
| - name: Run tests | |
| run: | | |
| go test -race . |