Skip to content

Commit 2fa93e9

Browse files
authored
Fix failing build on CI on MacOs (#64)
After the last change it seems the CI is failing on MacOs (not sure why it wasn't caught in PR CI).
1 parent 016474c commit 2fa93e9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-dotnet@v3
1616
with:
17-
dotnet-version: 7.0.x
17+
dotnet-version: |
18+
6.x
19+
7.x
20+
8.x
1821
- run: dotnet format --verify-no-changes
1922
- run: dotnet format --verify-no-changes
2023
working-directory: snapshots/input/syntax
@@ -28,5 +31,8 @@ jobs:
2831
- uses: actions/checkout@v3
2932
- uses: actions/setup-dotnet@v3
3033
with:
31-
dotnet-version: 7.0.x
34+
dotnet-version: |
35+
6.x
36+
7.x
37+
8.x
3238
- run: dotnet test

0 commit comments

Comments
 (0)