Skip to content

Commit 5a902c7

Browse files
committed
gh: format yaml
1 parent 5a4b570 commit 5a902c7

File tree

6 files changed

+52
-62
lines changed

6 files changed

+52
-62
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
version: 2
2-
32
updates:
43
- package-ecosystem: gomod
54
directory: /
65
labels:
76
- area/dependencies
87
schedule:
98
interval: daily
10-
119
- package-ecosystem: github-actions
1210
directory: /
1311
labels:

.github/workflows/linux.yml

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
name: Test fastwalk on Linux
2-
32
on:
43
push:
5-
branches: [ master ]
4+
branches: [master]
65
pull_request:
7-
branches: [ master ]
8-
6+
branches: [master]
97
jobs:
108
build:
119
runs-on: ubuntu-latest
@@ -14,16 +12,16 @@ jobs:
1412
matrix:
1513
go: ['1.20', '1.21', '1.22', '1.23']
1614
steps:
17-
- uses: actions/checkout@v4
18-
with:
19-
fetch-depth: 1
20-
- name: Set up Go
21-
uses: actions/setup-go@v5
22-
with:
23-
go-version: ${{ matrix.go }}
24-
- name: Test
25-
run: go test ./...
26-
- name: Test Race
27-
run: go test -race ./...
28-
- name: Test Builds
29-
run: make test_build --jobs=4
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 1
18+
- name: Set up Go
19+
uses: actions/setup-go@v5
20+
with:
21+
go-version: ${{ matrix.go }}
22+
- name: Test
23+
run: go test ./...
24+
- name: Test Race
25+
run: go test -race ./...
26+
- name: Test Builds
27+
run: make test_build --jobs=4
File renamed without changes.

.github/workflows/macos.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
name: Test fastwalk on macOS amd64
2-
32
on:
43
push:
5-
branches: [ master ]
4+
branches: [master]
65
pull_request:
7-
branches: [ master ]
8-
6+
branches: [master]
97
jobs:
108
build:
119
runs-on: macos-13
1210
strategy:
1311
matrix:
1412
go: ['1.22', '1.23']
1513
steps:
16-
- uses: actions/checkout@v4
17-
with:
18-
fetch-depth: 1
19-
- name: Set up Go
20-
uses: actions/setup-go@v5
21-
with:
22-
go-version: ${{ matrix.go }}
23-
- name: Test
24-
run: go test ./...
25-
- name: Test Race
26-
run: go test -race ./...
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 1
17+
- name: Set up Go
18+
uses: actions/setup-go@v5
19+
with:
20+
go-version: ${{ matrix.go }}
21+
- name: Test
22+
run: go test ./...
23+
- name: Test Race
24+
run: go test -race ./...

.github/workflows/macos_arm64.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
name: Test fastwalk on macOS arm64
2-
32
on:
43
push:
5-
branches: [ master ]
4+
branches: [master]
65
pull_request:
7-
branches: [ master ]
8-
6+
branches: [master]
97
jobs:
108
build:
119
runs-on: macos-latest
1210
strategy:
1311
matrix:
1412
go: ['1.22', '1.23']
1513
steps:
16-
- uses: actions/checkout@v4
17-
with:
18-
fetch-depth: 1
19-
- name: Set up Go
20-
uses: actions/setup-go@v5
21-
with:
22-
go-version: ${{ matrix.go }}
23-
- name: Test
24-
run: go test ./...
25-
- name: Test Race
26-
run: go test -race ./...
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 1
17+
- name: Set up Go
18+
uses: actions/setup-go@v5
19+
with:
20+
go-version: ${{ matrix.go }}
21+
- name: Test
22+
run: go test ./...
23+
- name: Test Race
24+
run: go test -race ./...

.github/workflows/windows.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
name: Test fastwalk on Windows
2-
32
on:
43
push:
5-
branches: [ master ]
4+
branches: [master]
65
pull_request:
7-
branches: [ master ]
8-
6+
branches: [master]
97
jobs:
108
build:
119
runs-on: windows-latest
1210
strategy:
1311
matrix:
1412
go: ['1.22', '1.23']
1513
steps:
16-
- uses: actions/checkout@v4
17-
with:
18-
fetch-depth: 1
19-
- name: Set up Go
20-
uses: actions/setup-go@v5
21-
with:
22-
go-version: ${{ matrix.go }}
23-
- name: Test Race
24-
run: go test -race ./...
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 1
17+
- name: Set up Go
18+
uses: actions/setup-go@v5
19+
with:
20+
go-version: ${{ matrix.go }}
21+
- name: Test Race
22+
run: go test -race ./...
2523

2624
# WSL Test: disabled for now since it's very slow (~5 minutes)
2725
#

0 commit comments

Comments
 (0)