fix formatters to focus only on file extensions they can format #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"] | |
| jobs: | |
| ci: | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate an agent token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.KAL_APP_ID }} | |
| private-key: ${{ secrets.KAL_PRIVATE_KEY }} | |
| - uses: actions/checkout@v4 | |
| - uses: dagger/dagger-for-github@8.0.0 | |
| - name: Check | |
| run: dagger call check --github-token GH_TOKEN --model claude-sonnet-4-0 --commit $GITHUB_SHA | |
| env: | |
| DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| GH_TOKEN: ${{ steps.generate-token.outputs.token }} |