Skip to content

Merge pull request #30 from tboby/fix-rework #101

Merge pull request #30 from tboby/fix-rework

Merge pull request #30 from tboby/fix-rework #101

Workflow file for this run

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
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
- 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/upload-artifact@v4
with:
path: src/**/bin/Debug/*.nupkg