Timng/add squad #1
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 | |
| # java 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 java 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" |