Skip to content

Add documentation page #1

Add documentation page

Add documentation page #1

Workflow file for this run

name: Squad Release
# python project — configure build, test, and release commands below
on:
push:
branches: [main]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build and test
run: |
# TODO: Add your python 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-release.yml"
- name: Create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# TODO: Add your release commands here (e.g., git tag, gh release create)
echo "No release commands configured — update squad-release.yml"