Skip to content

Commit

Permalink
Merge pull request #31 from evan-gordon:analyzer-action
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 647441889
  • Loading branch information
copybara-github committed Jun 27, 2024
2 parents caaac1b + 0fe5aa9 commit fb90240
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/go_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,31 @@ jobs:
- name: Test
run: |
go test ./...
go test ./...
go_spec_test_coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:

- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.22
id: go

- name: Check out code
uses: actions/checkout@v3

- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build ./...
- name: Spec Test Coverage
run: |
go run tests/spectests/cmd/analyzer/analyzer.go

0 comments on commit fb90240

Please sign in to comment.