Skip to content

cross platform build #55

cross platform build

cross platform build #55

Workflow file for this run

name: pr-validation
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v2
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build dirs.proj
test:
runs-on: windows-latest
needs: build
steps:
- uses: actions/checkout@v2
- name: Disable strong name validation
shell: pwsh
run: |
.\disableStrongName.ps1
- name: Run tests
run: dotnet test