Skip to content

Commit

Permalink
Merge branch 'legacy/7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
inversionhourglass committed Sep 18, 2024
2 parents 04dce9b + 7cf463a commit 5bfb323
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,8 @@ jobs:
- name: Restore NuGets
run: dotnet restore ${{ env.SOLUTION }}

- name: Build Solution in DEBUG
run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }}

- name: Test in DEBUG
run: dotnet test --configuration Debug --no-build ${{ env.SOLUTION }}

- name: Build Solution in RELEASE
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }}

- name: Test in RELEASE
run: dotnet test --configuration Release --no-build ${{ env.SOLUTION }}
run: dotnet test --configuration Release ${{ env.SOLUTION }}

linux:
name: Linux
Expand All @@ -63,18 +54,6 @@ jobs:
- name: Restore NuGets
run: dotnet restore ${{ env.SOLUTION }}

- name: Build Solution in DEBUG
run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }}

- name: Test in DEBUG with net6.0
run: dotnet test --configuration Debug --no-build --framework net6.0 ${{ env.SOLUTION }}

- name: Test in DEBUG with net7.0
run: dotnet test --configuration Debug --no-build --framework net7.0 ${{ env.SOLUTION }}

- name: Test in DEBUG with net8.0
run: dotnet test --configuration Debug --no-build --framework net8.0 ${{ env.SOLUTION }}

- name: Build Solution in RELEASE
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }}

Expand Down

0 comments on commit 5bfb323

Please sign in to comment.