Skip to content

Commit

Permalink
Moved the unittest githubaction to the backend-CI.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bandel <nicolas.bandel@fau.de>
  • Loading branch information
nicolasbandel committed Jun 1, 2024
1 parent 85a13c5 commit 993b3f5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 23 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/backend-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
paths:
- "backend/**"
push:
branches:
- '**'

jobs:
linting:
Expand All @@ -20,8 +23,15 @@ jobs:
tests:
needs: linting
name: Run Tests
runs-on: ubuntu-latest

runs-on: windows-latest
steps:
- name: Echo Test
run: echo "test"
- name: Checkout repository
uses: actions/checkout@v2.1.0

- name: Restore dependencies
run: dotnet restore
working-directory: backend\src\BIE.DataPipeline

- name: Run unit tests
run: dotnet test
working-directory: backend\src\BIE.DataPipeline
19 changes: 0 additions & 19 deletions .github/workflows/backend-unittest.yml

This file was deleted.

0 comments on commit 993b3f5

Please sign in to comment.