From 1c40e0178a8c38eacecd06524955d371a1d30d69 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Fri, 20 Sep 2024 18:20:46 -0400 Subject: .github/workflows: add tester.yml --- .github/workflows/tester.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/tester.yml (limited to '.github/workflows') diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml new file mode 100644 index 0000000..818cd49 --- /dev/null +++ b/.github/workflows/tester.yml @@ -0,0 +1,16 @@ +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 test TEST_OPTS=-race -- cgit v1.2.3