Make BASIC and FULL console support runtime-selectable if both available #167
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: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core 2.1 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '2.1.x' | |
- name: Setup .NET Core 3.1 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Setup .NET 6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Build | |
run: pwsh make.ps1 | |
- name: Package | |
run: pwsh make.ps1 package | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: packages | |
path: Package/Release/Packages | |
- name: Test (net452) | |
run: ./make.ps1 -frameworks net452 test-all | |
shell: pwsh | |
- name: Test (netcoreapp2.1) | |
run: ./make.ps1 -frameworks netcoreapp2.1 test-all | |
shell: pwsh | |
- name: Test (netcoreapp3.1) | |
run: ./make.ps1 -frameworks netcoreapp3.1 test-all | |
shell: pwsh | |
- name: Test (net6.0) | |
run: ./make.ps1 -frameworks net6.0 test-all | |
shell: pwsh |