We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa504ca commit 231839aCopy full SHA for 231839a
1 file changed
.github/workflows/unit-tests.yml
@@ -9,13 +9,12 @@ jobs:
9
unit-tests:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Checkout
13
- uses: actions/checkout@v2
14
-
15
- - name: Install .NET 6.0.x
16
- uses: actions/setup-dotnet@v1
+ - uses: actions/checkout@v4
+ - uses: actions/setup-dotnet@v4
17
with:
18
- dotnet-version: "6.0.x"
+ dotnet-version: |
+ 6.0.x
+ 8.0.x
19
20
- name: Restore Packages
21
run: dotnet restore
@@ -26,4 +25,4 @@ jobs:
26
25
docker-compose up --detach
27
28
- name: Run Unit Tests
29
- run: dotnet test
+ run: dotnet test
0 commit comments