Skip to content

Commit

Permalink
update github actions config
Browse files Browse the repository at this point in the history
  • Loading branch information
snower committed May 16, 2024
1 parent 714e046 commit d951ca4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20', '1.21.x' ]

steps:
- uses: actions/checkout@v2
- name: Install redis-cli
Expand All @@ -18,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: [ '1.17', '1.19', '1.21', '1.22']
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: Test
Expand Down

0 comments on commit d951ca4

Please sign in to comment.