Skip to content

fix: Update image and executor for ABACUS_calculation_agent #129

fix: Update image and executor for ABACUS_calculation_agent

fix: Update image and executor for ABACUS_calculation_agent #129

Workflow file for this run

name: pre-commit Checks
on: [ push, pull_request ]
jobs:
pre-commit:
# 添加条件判断,排除main分支的push事件
if: github.event_name != 'push' || github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files