From 3f6590e4e16d9cf7d0bd84f0ffeb178984c9ed3b Mon Sep 17 00:00:00 2001 From: Christian Mouchet Date: Tue, 17 May 2022 13:33:50 +0200 Subject: [PATCH] switched to Makefile-based jobs --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8715d1e5..c529bb40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,16 +3,16 @@ on: push: jobs: checks: - name: "Run staticcheck" + name: Run staticcheck runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: fetch-depth: 1 - name: Setup Go - uses: actions/setup-go@v1 - with: - go-version: 1.17 + uses: actions/setup-go@v1 + with: + go-version: 1.17 - name: Setup tools run: make get_tools - name: Run Makefile checks