Skip to content

Restructure repo for open source release #1

Restructure repo for open source release

Restructure repo for open source release #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- run: dotnet restore
- run: dotnet build --no-restore
- run: dotnet format --verify-no-changes --no-restore
- run: dotnet test --no-build