Update asym chain names (#262) #384
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
name: Ruff | |
on: | |
# Triggered whenever a commit is added to the main branch | |
push: | |
branches: | |
- main | |
# Triggered whenever a PR is opened or updated | |
pull_request: | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
# Use the minimum Python version in pyproject.toml (later versions should maintain backwards-compatibility) | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install | |
run: pip install pre-commit | |
- name: Run pre-commit checks on all files | |
# run specific ruff pre-commit hooks on all files | |
run: > | |
pip install pre-commit | |
&& pre-commit install -f | |
&& pre-commit run ruff --all-files | |
&& pre-commit run ruff-format --all-files |