docs: add drift-monitoring and auto-fix flow diagrams #29
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Restore | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --no-restore -c Release | |
| - name: Verify formatting | |
| run: dotnet format --verify-no-changes --no-restore | |
| # Unit + architecture tests need no Docker; the integration test uses | |
| # Testcontainers against the Docker engine preinstalled on the runner. | |
| - name: Test | |
| run: dotnet test --no-build -c Release |