We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49eae08 commit 2f9c7e3Copy full SHA for 2f9c7e3
.github/workflows/ci.yml
@@ -21,15 +21,18 @@ concurrency:
21
jobs:
22
unit-tests:
23
runs-on: ubuntu-24.04
24
-
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ go-version: [oldstable, stable]
28
steps:
29
- name: Checkout Repository
30
uses: actions/checkout@v4
31
32
- name: Setup Golang Environment
33
uses: actions/setup-go@v5
34
with:
- go-version: stable
35
+ go-version: ${{ matrix.go-version }}
36
37
- name: Run Unit Tests
38
run: go test ./... -race -shuffle=on -v
@@ -41,7 +44,8 @@ jobs:
41
44
42
45
43
46
- - uses: lucacome/[email protected]
47
+ - name: Create/Update Draft Release
48
+ uses: lucacome/[email protected]
49
50
minor-label: "enhancement"
51
major-label: "change"
0 commit comments