run writingsystem tests against dotnet 8 #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
timeout-minutes: 120 | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Build project | |
run: dotnet build --configuration Release | |
- name: Test project | |
continue-on-error: true | |
run: dotnet test --filter "TestCategory != SkipOnTeamCity" --blame-hang-timeout 100s --logger:"trx;LogFilePrefix=results" --results-directory ./test-results | |
- name: Publish test results | |
uses: EnricoMi/publish-unit-test-result-action/windows@v2 | |
with: | |
check_name: LibPalaso Tests | |
files: ./test-results/**/*.trx | |
action_fail: true | |
action_fail_on_inconclusive: true |