Skip to content

Commit 18e98fb

Browse files
committed
Fix failing ci
1 parent 01cfb64 commit 18e98fb

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/build-test-ci.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,25 @@ on:
77
pull_request:
88
branches:
99
- main
10+
1011
jobs:
1112
build-and-test:
1213
runs-on: ubuntu-latest
1314

1415
steps:
15-
- name: Checkout code
16-
uses: actions/checkout@v3
16+
- name: Checkout code
17+
uses: actions/checkout@v3
1718

18-
- name: Setup .NET
19-
uses: actions/setup-dotnet@v3
20-
with:
21-
dotnet-version: 6.x
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v3
21+
with:
22+
dotnet-version: '6.x'
2223

23-
- name: Restore dependencies
24-
run: dotnet restore
24+
- name: Restore dependencies
25+
run: dotnet restore
2526

26-
- name: Build
27-
run: dotnet build --configuration Release
27+
- name: Build
28+
run: dotnet build --configuration Release
2829

29-
- name: Run tests
30-
run: dotnet test --configuration Release --no-build
30+
- name: Run tests
31+
run: dotnet test --configuration Release --no-build

0 commit comments

Comments
 (0)