Skip to content

Commit

Permalink
updated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ericchiang committed Mar 19, 2024
1 parent 65ac180 commit 0963f39
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/test.yaml
Expand Up @@ -9,15 +9,16 @@ on:

jobs:
build:
name: Linux
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21', '1.22']
name: Linux Go ${{ matrix.go }}
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v2
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: '1.19'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
go-version: ${{ matrix.go }}
- name: Test
run: "./test"

0 comments on commit 0963f39

Please sign in to comment.