Skip to content

Commit

Permalink
Add separate dotnet test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rs22 committed Nov 20, 2023
1 parent 2e5bd28 commit 89d2e0e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore src/${{ matrix.subsystem }}
- name: Build
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: dotnet test

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore src/FieldElementSubsystems.Test
- name: Test
run: dotnet test --no-restore src/FieldElementSubsystems.Test

0 comments on commit 89d2e0e

Please sign in to comment.