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

Run tests for oldstable #35

Merged
merged 2 commits into from
Jan 22, 2025
Merged
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
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ 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 All @@ -41,7 +44,8 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- uses: lucacome/[email protected]
- name: Create/Update Draft Release
uses: lucacome/[email protected]
with:
minor-label: "enhancement"
major-label: "change"
Expand Down