Bump FluentAssertions from 6.12.0 to 6.12.1 #227
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: pr_validation | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
- main | |
pull_request: | |
branches: | |
- master | |
- dev | |
- main | |
permissions: | |
checks: write | |
pull-requests: write | |
issues: write | |
contents: read | |
jobs: | |
test: | |
# Permissions this GitHub Action needs for other things in GitHub | |
name: Test-${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: "Checkout" | |
uses: actions/[email protected] | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET SDK" | |
uses: actions/[email protected] | |
with: | |
global-json-file: "./global.json" | |
- name: "Update release notes" | |
shell: pwsh | |
run: | | |
./build.ps1 | |
- name: "dotnet build" | |
run: dotnet build -c Release | |
- name: "dotnet pack" | |
run: dotnet pack -c Release | |
- name: "dotnet test" | |
run: dotnet test --configuration Release --verbosity normal --logger trx | |
- name: Upload Test Result Files | |
if: runner.os == 'Linux' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: ${{ github.workspace }}/**/TestResults/**/* | |
retention-days: 5 | |
- name: Publish Test Results | |
if: always() && runner.os == 'Linux' | |
uses: EnricoMi/[email protected] | |
with: | |
trx_files: "${{ github.workspace }}/**/*.trx" |