Skip to content

Initial scaffold: solution, projects, scoring, adapters, infra, web/workers, scripts, docs and CI/tests #2

Initial scaffold: solution, projects, scoring, adapters, infra, web/workers, scripts, docs and CI/tests

Initial scaffold: solution, projects, scoring, adapters, infra, web/workers, scripts, docs and CI/tests #2

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore SentinelCareer.sln
- name: Build
run: dotnet build SentinelCareer.sln --no-restore -c Release
- name: Test
run: dotnet test SentinelCareer.sln --no-build -c Release
- name: Format check
run: dotnet format SentinelCareer.sln --verify-no-changes