Skip to content

Better instructions for readme #6

Better instructions for readme

Better instructions for readme #6

Workflow file for this run

name: Build & Test Debug
on:
push:
branches: [ master ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
branches: [ master ]
jobs:
build:
if: github.actor != 'PJBot' && github.event.pull_request.draft == false
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Master
uses: actions/[email protected]
- name: Install dependencies
run: dotnet restore
- name: Build Project
run: dotnet build --configuration Debug --no-restore /p:WarningsAsErrors=nullable /m
- name: Run Tests
run: dotnet test --no-build --configuration Debug