Triage skill using snouty API #116
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: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| permissions: | |
| contents: read | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Sync project dependencies | |
| run: uv sync --locked | |
| - name: Validate skills | |
| run: make validate | |
| - name: Run tests | |
| run: make test | |
| - name: Check spelling | |
| uses: crate-ci/typos@v1.44.0 | |
| - name: Cache lychee results | |
| uses: actions/cache@v5 | |
| with: | |
| path: .lycheecache | |
| key: ${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}-${{ github.ref_name }}-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}-${{ github.ref_name }}- | |
| ${{ runner.os }}-lychee-${{ hashFiles('lychee.toml') }}- | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --config lychee.toml . | |
| jobSummary: true | |
| token: ${{ secrets.GITHUB_TOKEN }} |