name: Go Test on: pull_request: workflow_dispatch: branches: [ '**' ] jobs: full_ci: runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up Go uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0 with: go-version-file: go.mod - name: run tests run: go test -json ./... > test.json - name: Annotate tests if: always() uses: guyarb/golang-test-annotations@9ab2ea84a399d03ffd114bf49dd23ffadc794541 # v0.6.0 with: test-results: test.json