This repository was archived by the owner on Jun 30, 2026. It is now read-only.
Fix mobile /human dashboard - show task titles #315
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: uv sync --extra dev --frozen | |
| - name: Pre-commit checks | |
| uses: pre-commit/action@v3.0.1 | |
| - name: Test | |
| run: uv run pytest tests/ -v | |
| cli-build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: pinchwork-cli | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.21" | |
| cache-dependency-path: pinchwork-cli/go.sum | |
| - name: Build | |
| run: go build ./... | |
| - name: Vet | |
| run: go vet ./... | |
| - name: Test | |
| run: go test ./... -v | |
| - name: Cross-compile check | |
| run: GOOS=linux GOARCH=arm64 go build -o /dev/null . |