Bump Serilog.Sinks.Console from 5.0.0 to 5.0.1 #412
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: Legacy CI | |
on: | |
push: | |
branches: | |
- mainstream | |
paths-ignore: | |
- 'performance/Farkle.Benchmarks.CSharp/**' | |
- 'src/FarkleNeo/**' | |
- 'tests/Farkle.Tests.CSharp/**' | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
- 'performance/Farkle.Benchmarks.CSharp/**' | |
- 'src/FarkleNeo/**' | |
- 'tests/Farkle.Tests.CSharp/**' | |
schedule: | |
- cron: '18 14 * * 4' | |
permissions: read-all | |
jobs: | |
test: | |
name: 'Test the legacy F# codebase' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore .NET local tools | |
run: dotnet tool restore | |
- name: Run tests | |
run: dotnet run --project eng/Farkle.Build.fsproj -- -t TestLegacy |