summaryrefslogblamecommitdiffstats
path: root/.github/workflows/tester.yml
blob: 7f43f62bd31608a00cdaec2b382de8e5b705af53 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                       
                     
                                      
name: tester
run-name: run fern tests
on: push
jobs:
  test:
    name: test fern
    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