Skip to content

Setting up repo

Setting up repo #12

Workflow file for this run

on:
- push
- pull_request
jobs:
test-spec:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- uses: actions/checkout@v3
- run: dotnet test
test-lint:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- uses: actions/checkout@v3
- run: dotnet format --verify-no-changes