From aac91ff574bff4c801e0221c5649dd7fab85b3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 15 Nov 2023 12:26:53 +0200 Subject: [PATCH] ci: run tests on PR's and main pushes --- .github/workflows/check.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/check.yaml diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml new file mode 100644 index 0000000..f3e17d5 --- /dev/null +++ b/.github/workflows/check.yaml @@ -0,0 +1,14 @@ +name: Check + +on: + pull_request: + push: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: go test -v ./...