| 1 | name: Squad CI |
| 2 | # python project — configure build/test commands below |
| 3 | |
| 4 | on: |
| 5 | pull_request: |
| 6 | branches: [dev, preview, main, insider] |
| 7 | types: [opened, synchronize, reopened] |
| 8 | push: |
| 9 | branches: [dev, insider] |
| 10 | |
| 11 | permissions: |
| 12 | contents: read |
| 13 | |
| 14 | jobs: |
| 15 | test: |
| 16 | runs-on: ubuntu-latest |
| 17 | steps: |
| 18 | - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 |
| 19 | |
| 20 | - name: Build and test |
| 21 | run: | |
| 22 | # TODO: Add your python build/test commands here |
| 23 | # Go: go test ./... |
| 24 | # Python: pip install -r requirements.txt && pytest |
| 25 | # .NET: dotnet test |
| 26 | # Java (Maven): mvn test |
| 27 | # Java (Gradle): ./gradlew test |
| 28 | echo "No build commands configured — update squad-ci.yml" |