From a5cf8c42e9f559b050489e6ab91bc6fc2ea3736b Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Thu, 4 Jul 2024 11:30:02 +0800 Subject: [PATCH] add unit test workflow --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..444d2f4 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test + +on: + pull_request: + branches: '*' + push: + branches: + - main + +jobs: + test: + name: Run unit tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v3 + with: + go-version-file: go.mod + check-latest: true + - name: Run unit tests + run: go test -v -p 1 ./...