Langfuse adapter #245
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: Pre-commit checks | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: [main] # run when pushing to main | |
| pull_request: | |
| branches: [main] # run on PRs targeting main | |
| workflow_dispatch: | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| lfs: true | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| version: "0.9.15" | |
| enable-cache: true | |
| - name: Setup pre-commit cache | |
| uses: actions/cache@v4.2.0 | |
| with: | |
| path: ~/.cache/pre-commit | |
| key: pre-commit-3-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }} | |
| restore-keys: | | |
| pre-commit-3-${{ runner.os }}- | |
| pre-commit-3- | |
| - name: Configure SKIP for pre-commit hooks | |
| run: echo "SKIP=no-commit-to-branch" >> "$GITHUB_ENV" | |
| - name: Run pre-commit using uvx | |
| run: uvx --with pre-commit-uv pre-commit run --all-files | |
| env: | |
| SKIP: ${{ env.SKIP }} |