Bump parsl from 2024.12.2 to 2024.12.9 (#276) #465
This file contains 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
--- | |
# used for running pre-commit checks | |
name: pre-commit checks | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
run_pre_commit_tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
# run pre-commit | |
- uses: pre-commit/action@v3.0.1 | |
# run pre-commit ci lite for automated fixes | |
- uses: pre-commit-ci/lite-action@v1.1.0 | |
if: ${{ !cancelled() }} |