ci: add test job to CI configuration
All checks were successful
Go CI / test (pull_request) Successful in 8s
Go CI / lint (pull_request) Successful in 11s
Lint Pull Request / Lint PR Title (pull_request) Successful in 10s

This commit is contained in:
Jan K9f 2025-04-09 19:45:19 +02:00
parent e332ef87cb
commit 7e9aba1b44
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -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 ./...