From fab9ce963869a4c18022f44cc0088e7244f0d3ff Mon Sep 17 00:00:00 2001 From: Christian Mouchet Date: Tue, 17 May 2022 11:04:17 +0200 Subject: [PATCH] trying to run as standalone jobs --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48534432..1b7b1844 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,12 @@ name: CI Checks on: push: jobs: - ci: + - checks: + name: Static Checks + uses: dominikh/staticcheck-action@v1.2.0 + with: + version: "2022.1" + - tests: name: Go ${{ matrix.go }} runs-on: ubuntu-latest strategy: @@ -26,10 +31,5 @@ jobs: - name: Build run: go build ./... - - name: Static Checks - uses: dominikh/staticcheck-action@v1.2.0 - with: - version: "2022.1" - - name: Run Makefile checks run: make ci_tests