1 Commits

Author SHA1 Message Date
86d751e25c Add CI/CD
Add Standard .dotnet CICD
2026-04-04 14:48:41 -04:00

View File

@@ -1,6 +1,6 @@
name: s&box CI
on: [push, pull_request]
on: []
jobs:
build-and-lint:
@@ -13,14 +13,3 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore Dependencies
run: dotnet restore
- name: Lint Check
# Fails if code isn't formatted according to .editorconfig
run: dotnet format --verify-no-changes --verbosity diagnostic
- name: Build Project
# Ensures everything compiles
run: dotnet build --no-restore --configuration Release