Skip to content

Commit c656e4c

Browse files
update github actions
1 parent 746a33e commit c656e4c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
name: "Tests"
22
on: ["push"]
33

4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.ref }}
6+
cancel-in-progress: true
7+
48
jobs:
59
ci:
610
name: "Run CI"
711
strategy:
812
fail-fast: false
913
matrix:
10-
os: ["ubuntu-latest", "macOS-latest"]
11-
go: ["1.23.x"]
14+
os: ["ubuntu-latest", "macos-latest"]
15+
go: ["1.23.x"]
1216
runs-on: ${{ matrix.os }}
1317
steps:
14-
- uses: actions/checkout@v2
15-
with:
16-
fetch-depth: 1
17-
- uses: WillAbides/setup-go-faster@v1.14.0
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-go@v5
1820
with:
1921
go-version: ${{ matrix.go }}
2022
- run: "go test ./..."
@@ -23,5 +25,3 @@ jobs:
2325
with:
2426
version: "latest"
2527
install-go: false
26-
cache-key: ${{ matrix.go }}
27-
working-directory: ${{ matrix.dir }}

0 commit comments

Comments
 (0)