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"