Skip to content

Commit

Permalink
add oldstable
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Dec 4, 2024
1 parent a60d3f9 commit 304df85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,21 @@ concurrency:
jobs:
unit-tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
go-version: [
oldstable,
stable,
]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Golang Environment
uses: actions/setup-go@v5
with:
go-version: stable
go-version: ${{ matrix.go-version }}

- name: Run Unit Tests
run: go test ./... -race -shuffle=on -v
Expand Down

0 comments on commit 304df85

Please sign in to comment.