@wip SOA ILReader #131
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: Build | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "readme.md" | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- "readme.md" | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Build | |
run: dotnet build -c:Release | |
- name: Tests - net9.0 (Latest) | |
run: dotnet run --no-build -c:Release -f:net9.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj | |
- name: Tests - net8.0 (Latest LTS) | |
run: dotnet run --no-build -c:Release -f:net8.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj | |
- if: matrix.os == 'windows-latest' | |
name: Tests - net6.0 (Previous LTS) | |
run: dotnet run --no-build -c:Release -f:net6.0 --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj | |
- if: matrix.os == 'windows-latest' | |
name: Tests - net472 (Windows only) | |
run: dotnet run --no-build -c:Release --project test/FastExpressionCompiler.TestsRunner.Net472 |