Skip to content

Merge pull request #14 from OliverRC/ci-run-tests #40

Merge pull request #14 from OliverRC/ci-run-tests

Merge pull request #14 from OliverRC/ci-run-tests #40

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
- name: Test
run: dotnet test --verbosity normal
- name: Pack
run: dotnet pack -o dist --verbosity normal