Allow subsections and section less items #85
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 and test | |
on: [push, pull_request] | |
jobs: | |
build: | |
timeout-minutes: 15 # we have a locking issue, so cap the runs at ~15m to account for varying build times, etc | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
dotnet: [6.0.201] | |
fail-fast: false # we have timing issues on some OS, so we want them all to run | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- name: Restore | |
run: dotnet restore | |
- name: Run Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --verbosity normal | |
- name: Pack | |
run: dotnet pack --no-restore | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
path: src/**/bin/Debug/*.nupkg |