From 653e80ee737e01e12f335a4b0ab4f71ad506825b Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 9 Apr 2025 17:46:26 +0000 Subject: [PATCH] ci: add test job to CI configuration (#12) Reviewed-on: https://git.kjan.de/actions/pull-request-lint/pulls/12 Co-authored-by: Jan Klattenhoff Co-committed-by: Jan Klattenhoff --- .gitea/workflows/CI.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitea/workflows/CI.yml b/.gitea/workflows/CI.yml index e962467..23d4be6 100644 --- a/.gitea/workflows/CI.yml +++ b/.gitea/workflows/CI.yml @@ -16,3 +16,14 @@ jobs: uses: golangci/golangci-lint-action@v7 with: version: v2.0 + + test: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: 1.24.2 + - name: Test + run: go test ./...