Skip to content

Commit 5dab385

Browse files
committed
chore: updated pipeline for ci in github actions
1 parent 5be35ef commit 5dab385

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
name: Quality
1+
name: Pipeline
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [main]
66

77
jobs:
88
test:
9-
runs-on: ubuntu-16.04
9+
runs-on: ubuntu-24.04
1010
strategy:
1111
matrix:
12-
go: ['1.19', '1.20', '1.21', '1.22']
12+
go: ['1.19', '1.20', '1.21', '1.22', '1.23']
1313
name: Go ${{ matrix.go }}
1414
steps:
1515
- name: Checkout source code
1616
uses: actions/checkout@v2
17+
1718
- name: Setup Go
1819
uses: actions/setup-go@v2
1920
with:
2021
go-version: ${{ matrix.go }}
22+
2123
- name: Running test
2224
run: go test -cover -v $(go list -v ./...)
2325

0 commit comments

Comments
 (0)