From 58a57ab2aa464fb0bac5cfef926a9be69378cf77 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Sun, 22 Dec 2024 19:19:59 +0700 Subject: [PATCH] Create tests.yml run tests --- .github/workflows/tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 00000000..14d770d1 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,15 @@ +on: [push, pull_request] +name: Test +jobs: + test: + strategy: + matrix: + go-version: [1.23.x] + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go-version }} + - run: go test ./...