Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test
on:
on:
push:
branches:
- v3
Expand All @@ -11,13 +11,17 @@ jobs:
build:
name: Linux
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.19', '1.20', '1.21']
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v2
with:
go-version: '1.19'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: "./test"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: false
id: go
- name: Test
run: "./test"