Bump Meziantou.Analyzer from 2.0.236 to 2.0.238 #4110
Workflow file for this run
This file contains hidden or 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: "Test" | |
| on: | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: ci-tests-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| jobs: | |
| test_and_check_coverage: | |
| runs-on: [self-hosted, linux] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: "Setup Dotnet for use with actions" | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: "Test" | |
| working-directory: ImperatorToCK3.UnitTests | |
| shell: pwsh | |
| run: | | |
| $env:CoverletOutput='./TestResults/coverage.info' | |
| $env:CoverletOutputFormat='lcov' | |
| dotnet test /p:CollectCoverage=true | |
| - name: "Publish coverage report to coveralls.io" | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: ImperatorToCK3.UnitTests/TestResults/coverage.info | |
| format: lcov | |
| debug: true | |
| test: | |
| strategy: | |
| matrix: | |
| os: [[self-hosted, windows], macos-14] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: "Setup Dotnet for use with actions" | |
| # don't run on self-hosted Windows | |
| if: ${{ !contains(toJSON(matrix.os), 'windows') || !contains(toJSON(matrix.os), 'self-hosted') }} | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| - name: "Test" | |
| working-directory: ImperatorToCK3.UnitTests | |
| run: | | |
| dotnet test |