Skip to content

Commit cbfd4e2

Browse files
Tweak CI (#2317)
1 parent b7aa1dc commit cbfd4e2

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,21 @@ on:
1111

1212
jobs:
1313
test:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
17-
- uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee
16+
- name: Checkout code
17+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
18+
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee
1821
with:
19-
dotnet-version: "8.0.201"
20-
- run: pwsh bin/test.ps1
21-
- uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
22+
dotnet-version: "8.0.403"
23+
24+
- name: Run tests
25+
run: pwsh bin/test.ps1
26+
27+
- name: Create test summary
28+
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
2229
with:
2330
paths: build/**/results/**/*.xml
2431
if: always()

0 commit comments

Comments
 (0)