Skip to content

Commit eec94c8

Browse files
committed
Improve CI/CD pipelines.
1 parent 3e5b2d5 commit eec94c8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
go: ["1.21", "1.20"]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3.3.0
19+
uses: actions/checkout@v4.1.1
2020

2121
- name: Go installation
22-
uses: actions/setup-go@v3.5.0
22+
uses: actions/setup-go@v5.0.0
2323
with:
2424
go-version: ${{ matrix.go }}
2525

@@ -29,5 +29,8 @@ jobs:
2929
- name: Build
3030
run: go build ./...
3131

32+
- name: Test
33+
run: go test ./...
34+
3235
- name: Vet
3336
run: go vet ./...

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3.3.0
14+
uses: actions/checkout@v4.1.1
1515

1616
- name: Release
1717
uses: softprops/action-gh-release@v0.1.15

0 commit comments

Comments
 (0)