Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
woutervanranst committed Oct 9, 2024
1 parent f42e9ae commit e2da508
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,12 @@ permissions: # Required for dorny/test-reporter@v1
jobs:
ci:
name: CI Build and Test
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: src

strategy:
matrix:
os: [ubuntu-latest, windows-latest]

steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -36,7 +32,7 @@ jobs:
run: dotnet build Arius.Core/Arius.Core.csproj --configuration Release

- name: Run Unit Tests
run: dotnet test Arius.Core.Tests --configuration Release --no-build --verbosity normal --logger "junit;LogFilePath=../results/test-results.xml" --collect:"XPlat Code Coverage"
run: dotnet test Arius.Core.Tests --configuration Release --no-build --verbosity normal # --logger "junit;LogFilePath=../results/test-results.xml" --collect:"XPlat Code Coverage"

- name: Test Report
uses: dorny/test-reporter@v1
Expand Down

0 comments on commit e2da508

Please sign in to comment.