Skip to content

Deterministic builds, AOT and trimming. #37

Deterministic builds, AOT and trimming.

Deterministic builds, AOT and trimming. #37

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install .NET
shell: pwsh
run: |
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1
.\dotnet-install.ps1 -Version 7.0.100-rc.2.22477.23 -InstallDir .
- name: Build
shell: pwsh
run: |
& .\dotnet build ThreadSafeRandomizer/ThreadSafeRandomizer.csproj -bl:binlog.binlog
- name: Test
run: dotnet test --no-build --verbosity normal