Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated github actions #419

Merged
merged 1 commit into from Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"