summaryrefslogblamecommitdiffstats
path: root/.github/workflows/test.yml
blob: d742952775d7b038075a0d23fac938c7038ac309 (plain) (tree)
1
2
3
4
5
6
7
               


        


                                         






                                 
                     
                                      
name: Run tests
on: push
jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version: '1.23'
          check-latest: true
      - run: make vet
      - run: make test TEST_OPTS=-race