Skip to content

Merge pull request #8 from UCL-ARC/km/add-new-script #6

Merge pull request #8 from UCL-ARC/km/add-new-script

Merge pull request #8 from UCL-ARC/km/add-new-script #6

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Cache pre-commit
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5
with:
python-version: "3.x"
- name: Install pre-commit
run: python -m pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --verbose