From 520a0461fca1ee698038969a7c4a4439bae1e234 Mon Sep 17 00:00:00 2001 From: Ilia Bakhterev Date: Thu, 3 Oct 2024 17:44:17 +0200 Subject: [PATCH] tests job added --- .github/workflows/{golangci-lint.yaml => ci.yaml} | 10 ++++++++++ 1 file changed, 10 insertions(+) rename .github/workflows/{golangci-lint.yaml => ci.yaml} (67%) diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/ci.yaml similarity index 67% rename from .github/workflows/golangci-lint.yaml rename to .github/workflows/ci.yaml index e93f1e9..a807953 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/ci.yaml @@ -22,3 +22,13 @@ jobs: uses: golangci/golangci-lint-action@v6 with: version: v1.60.3 + + tests: + name: go-test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: stable + - run: make test