Skip to content

Commit

Permalink
Adds run tests against 3 latest version of go to CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ksysoev committed Apr 20, 2024
1 parent dcb0937 commit a1d52d7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.20.x", "1.21.x", "1.22.x"]
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.21
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: "1.21.x"
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Code Lint
Expand Down

0 comments on commit a1d52d7

Please sign in to comment.