Skip to content

Commit

Permalink
Fix action file
Browse files Browse the repository at this point in the history
  • Loading branch information
rs committed Sep 5, 2023
1 parent 5288ed0 commit cefce9c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .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 ./...
Expand All @@ -34,4 +31,4 @@ jobs:
report: 'true'
chart: 'true'
amend: 'true'
continue-on-error: true
continue-on-error: true

0 comments on commit cefce9c

Please sign in to comment.