Add parameters to StepDetails #140
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.100 | |
- name: Build with dotnet on windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
./build.cmd build | |
./build.cmd test | |
- name: Build with dotnet on ubuntu | |
if: matrix.os != 'windows-latest' | |
run: | | |
./build.sh build | |
./build.sh test |