Files
Titan/.gitea/workflows/ci.yaml
Relic 64fb193601
Some checks failed
s&box CI / build-and-lint (push) Failing after 20s
s&box CI / build-and-lint (pull_request) Failing after 19s
Add CI/CD
Add Standard .dotnet CICD
2026-04-04 13:25:12 -04:00

27 lines
662 B
YAML

name: s&box CI
on: [push, pull_request]
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup .NET
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