fix release pipeline; Drop setup-nuget action; use ubuntu instead of windows; don't release as pre-release although we use System.Text v9 #60
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: Unit Tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
tests: | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 1 | |
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#defining-the-maximum-number-of-concurrent-jobs | |
matrix: | |
dotnet_version: ["9"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet_version }} | |
- name: Run integration tests | |
run: dotnet test MaLoIdentModelsTests/MaLoIdentModelsTests.csproj | |
working-directory: "MaLoIdentModels" |