Pinned dotnet-ilverify to 8.0.0 #102
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install .Net Core | |
uses: actions/setup-dotnet@v2.0.0 | |
with: | |
dotnet-version: | | |
8.0.x | |
- name: Install dotnet-script | |
run: dotnet tool install --global dotnet-script | |
- name: Install dotnet-ilverify | |
run: dotnet tool install --global dotnet-ilverify --version 8.0.0 | |
- name: Run build script | |
run: dotnet-script build/build.csx | |
env: # Or as an environment variable | |
GITHUB_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
IS_SECURE_BUILDENVIRONMENT: ${{ secrets.IS_SECURE_BUILDENVIRONMENT }} | |
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }} |