docs: add feature roadmap and requirements tracking to todo list #252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Architecture Guard" | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Restore tools | |
| run: dotnet tool restore | |
| - name: Build Architecture Tests | |
| run: dotnet build TicketsPlease.slnx | |
| - name: Run Architecture Checks | |
| run: dotnet test TicketsPlease.slnx --filter FullyQualifiedName~ArchitectureTests |