Merge pull request #202 from ArkaSaha30/main-cve-2024-24790 #260
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: Test AMD64 | |
permissions: read-all | |
on: [push, pull_request] | |
jobs: | |
test-linux-amd64: | |
uses: ./.github/workflows/test_template.yaml | |
with: | |
targets: "['linux-amd64-unit-4-cpu-race']" | |
test-linux-386: | |
uses: ./.github/workflows/test_template.yaml | |
with: | |
targets: "['linux-386-unit-1-cpu']" | |
coverage: | |
needs: | |
- test-linux-amd64 | |
- test-linux-386 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: goversion | |
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ steps.goversion.outputs.goversion }} | |
- run: make test |