Skip to content

Commit

Permalink
updated YML file
Browse files Browse the repository at this point in the history
zodat de api eerst gerunt wordt, voordat de tests beginnen, omdat de tests niet kunnen werken anders
  • Loading branch information
safouuwa committed Nov 8, 2024
1 parent 85934b4 commit cd5eeb2
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,17 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Run C# Application
run: |
dotnet run
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run Python unit tests
run: |
pytest

0 comments on commit cd5eeb2

Please sign in to comment.