mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
34 lines
997 B
YAML
34 lines
997 B
YAML
name: Pre-commit Checks
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
pre-commit:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write # This is needed for commenting on PRs
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
- uses: pre-commit/action@v3.0.0
|
|
id: precommit
|
|
continue-on-error: true
|
|
- name: Comment on PR if pre-commit failed
|
|
if: steps.precommit.outcome == 'failure'
|
|
uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: '❌ Pre-commit checks failed. Please run `pre-commit run --all-files` locally and fix the issues.'
|
|
})
|
|
- name: Exit with pre-commit status
|
|
if: steps.precommit.outcome == 'failure'
|
|
run: exit 1
|