Skip to content

Commit 113d6e0

Browse files
committed
Fix formatting of CI job
1 parent 2a5fb7b commit 113d6e0

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Test
2-
on:
2+
on:
33
push:
44
branches:
55
- main
@@ -10,13 +10,14 @@ env:
1010
jobs:
1111
format:
1212
runs-on: ubuntu-latest
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-dotnet@v3
15-
with:
16-
dotnet-version: 6.0.x
17-
- run: dotnet format --verify-no-changes
18-
- run: dotnet format --verify-no-changes
19-
working-directory: snapshots/input/syntax
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-dotnet@v3
16+
with:
17+
dotnet-version: 6.0.x
18+
- run: dotnet format --verify-no-changes
19+
- run: dotnet format --verify-no-changes
20+
working-directory: snapshots/input/syntax
2021
test:
2122
runs-on: ${{ matrix.os }}
2223
strategy:
@@ -25,8 +26,8 @@ jobs:
2526
os: [ubuntu-latest, windows-latest, macos-latest]
2627
name: Test
2728
steps:
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-dotnet@v3
30-
with:
31-
dotnet-version: 6.0.x
32-
- run: dotnet test
29+
- uses: actions/checkout@v3
30+
- uses: actions/setup-dotnet@v3
31+
with:
32+
dotnet-version: 6.0.x
33+
- run: dotnet test

0 commit comments

Comments
 (0)