Milestone 15: HTML Fidelity Closure Bug fixes, sample alignment, audit markers #6
Workflow file for this run
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: Squad CI | |
| # dotnet project — configure build/test commands below | |
| on: | |
| pull_request: | |
| branches: [dev, preview, main, insider] | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: [dev, insider] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and test | |
| run: | | |
| # TODO: Add your dotnet build/test commands here | |
| # Go: go test ./... | |
| # Python: pip install -r requirements.txt && pytest | |
| # .NET: dotnet test | |
| # Java (Maven): mvn test | |
| # Java (Gradle): ./gradlew test | |
| echo "No build commands configured — update squad-ci.yml" |