From cefce9cd439151b345d1d59c63f4a96390d6708a Mon Sep 17 00:00:00 2001 From: Olivier Poitrey Date: Tue, 5 Sep 2023 16:49:25 +0200 Subject: [PATCH] Fix action file --- .github/workflows/go.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 442efa8..af01e94 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,23 +1,20 @@ -name: Go on: [push] +name: Test jobs: - - build: - name: Build + test: runs-on: ubuntu-latest strategy: matrix: go: ["1.17", "1.21"] steps: - - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }} id: go - - name: Check out code into the Go module directory - uses: actions/checkout@v1 + - name: Check out code + uses: actions/checkout@v3 - name: Get dependencies run: go get -v -t -d ./... @@ -34,4 +31,4 @@ jobs: report: 'true' chart: 'true' amend: 'true' - continue-on-error: true + continue-on-error: true