From 6429947410002c6d290c95e90a910daac382f235 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Fri, 20 Sep 2024 18:48:17 -0400 Subject: .github/workflows/tester.yml -> .github/workflows/test.yml --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github/workflows/test.yml') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d742952 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,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.23' + check-latest: true + - run: make vet + - run: make test TEST_OPTS=-race -- cgit v1.2.3