From 9a78d83f01a67d5aff7f9726e55e30733e5b8a32 Mon Sep 17 00:00:00 2001 From: Vladimir Domnich Date: Mon, 19 Sep 2022 13:49:44 +0400 Subject: [PATCH] [#17] Add job to run unit-tests Signed-off-by: Vladimir Domnich --- .github/workflows/go.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 002e531..1b1d5a9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,7 +13,6 @@ jobs: lint: name: Lint runs-on: ubuntu-20.04 - steps: - name: Check out code uses: actions/checkout@v2 @@ -22,3 +21,13 @@ jobs: uses: golangci/golangci-lint-action@v2 with: version: latest + + tests: + name: Tests + runs-on: ubuntu-20.04 + strategy: + matrix: + go_versions: [ '1.17', '1.18', '1.19' ] + fail-fast: false + steps: + - uses: actions/checkout@v3