From 2f9c7e3db032989f690779d06baa27f2f5e28f3d Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Tue, 21 Jan 2025 18:01:32 -0800 Subject: [PATCH] Run tests for oldstable (#35) --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a48996a..5a69a51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,10 @@ 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 @@ -29,7 +32,7 @@ jobs: - 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 @@ -41,7 +44,8 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - uses: lucacome/draft-release@v1.1.1 + - name: Create/Update Draft Release + uses: lucacome/draft-release@v1.1.1 with: minor-label: "enhancement" major-label: "change"