We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507a500 commit 884e64cCopy full SHA for 884e64c
.github/workflows/tests.yml renamed to .github/workflows/release-and-publish.yml
@@ -1,4 +1,4 @@
1
-name: Test CI
+name: Worflow CI
2
on: [push, pull_request]
3
jobs:
4
build:
@@ -7,7 +7,7 @@ jobs:
7
fail-fast: false
8
matrix:
9
os: [ubuntu-latest]
10
- net-version: ['6.x','7.x','8.x']
+ net-version: ['8.x']
11
steps:
12
- uses: actions/checkout@v4
13
- name: Setup .NET 8.x
@@ -18,5 +18,15 @@ jobs:
18
run: dotnet restore
19
- name: Build
20
run: dotnet build
21
+ test:
22
+ needs: [build]
23
+ runs-on: ${{matrix.os}}
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ os: [ubuntu-latest]
28
29
+ steps:
30
+ - uses: actions/checkout@v4
31
- name: Test
32
run: dotnet test --logger trx --results-directory "TestResults-${{ matrix.net-version }}"
0 commit comments