Skip to content

Restructure docs into brief topic specs; Endpoints controls routes only. #10

Restructure docs into brief topic specs; Endpoints controls routes only.

Restructure docs into brief topic specs; Endpoints controls routes only. #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Check formatting
run: |
dotnet tool restore
dotnet csharpier check .
- name: Build
run: dotnet build --configuration Release /warnaserror
- name: Test
run: dotnet test --configuration Release --no-build