Skip to content

Fix unresolvable jobs when DOTNET_ENVIRONMENT is set to Development d… #160

Fix unresolvable jobs when DOTNET_ENVIRONMENT is set to Development d…

Fix unresolvable jobs when DOTNET_ENVIRONMENT is set to Development d… #160

Workflow file for this run

name: CI
on: push
jobs:
build_core:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.100'
- name: Test
run: dotnet test --configuration=Release
build_getting_started:
name: Build Examples
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.100'
- name: Test
run: dotnet build --configuration=Release
working-directory: examples