summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
blob: 4b771b0112c1797333ec47f70aadfaf1beb6bf26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.26'
          check-latest: true
      - run: make vet
      - run: make test TEST_OPTS=-race