Skip to content

Merge pull request #116 from lincc-frameworks/u/olynn/patch-unit-test #315

Merge pull request #116 from lincc-frameworks/u/olynn/patch-unit-test

Merge pull request #116 from lincc-frameworks/u/olynn/patch-unit-test #315

Workflow file for this run

# This workflow runs pre-commit hooks on pushes and pull requests to main
# to enforce coding style. To ensure correct configuration, please refer to:
# https://lincc-ppt.readthedocs.io/en/latest/practices/ci_precommit.html
name: Run pre-commit hooks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pre-commit-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install .[dev]
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --verbose
env:
SKIP: "check-lincc-frameworks-template-version,no-commit-to-branch,check-added-large-files,validate-pyproject,sphinx-build,pytest-check"
- uses: pre-commit-ci/[email protected]
if: failure() && github.event_name == 'pull_request' && github.event.pull_request.draft == false