Skip to content

Commit

Permalink
Add a github action that just builds the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpicyLemon committed Apr 2, 2024
1 parent 5b6eb49 commit 75fa70c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,19 @@ jobs:
name: "${{ needs.setup-tests.outputs.file-prefix }}-${{ matrix.part }}-coverage"
path: ./${{ matrix.part }}profile.out

build-tests:
# TODO[1760]: Delete this build-tests action once the tests reliably pass again.
needs: setup-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
if: needs.setup-tests.outputs.should-run
with:
go-version: ${{ needs.setup-tests.outputs.go-version }}
- name: build tests
run: |
make build-tests
# This action performs a code coverage assessment but filters out generated code from proto based types
# and grpc services
Expand Down

0 comments on commit 75fa70c

Please sign in to comment.