style: standardize list item markers from asterisks to hyphens in REA… #22
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@v4 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Restore tools | |
| run: dotnet tool restore | |
| - name: Build Architecture Tests | |
| run: dotnet build src/TicketsPlease.slnx | |
| - name: Run Architecture Checks | |
| run: dotnet test src/TicketsPlease.slnx --filter FullyQualifiedName~ArchitectureTests |