Skip to content

Commit

Permalink
Run c# tests on gh
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarnoud committed Sep 7, 2023
1 parent c4c2fac commit c127627
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: [push]
name: "Tests and validation"

jobs:
tests:
python-tests:
name: Python unit and integration tests
runs-on: ubuntu-latest
defaults:
Expand All @@ -24,3 +24,11 @@ jobs:
run: python -m pytest --cov narupa python-libraries -n auto -m 'not serial'
- name: Serial tests
run: python -m pytest --cov narupa python-libraries -n auto -m 'serial'
csharp-tests:
name: C# unit and integration tests
runs-on: ubuntu-latest
steps:
- name: Compile
run: ./compile.sh --no-python
- name: Tests
run: cd ./csharp-libraries && dotnet test

0 comments on commit c127627

Please sign in to comment.