move some models to cache #375
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
# This workflow runs pre-commit hooks on pull requests 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: | |
# Disabling until we can figure out inconsistencies in bash behavior | |
# between conda setup and pre-commit itself. | |
# pull_request: | |
jobs: | |
pre-commit-ci: | |
runs-on: ubuntu-latest | |
env: | |
SKIP: "check-lincc-frameworks-template-version,pytest-check,no-commit-to-branch,validate-pyproject,check-added-large-files,sphinx-build" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
python -m pip install --upgrade pip | |
pip install . | |
pip install .[dev] | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- uses: pre-commit/action@v3.0.0 | |
with: | |
extra_args: --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }} | |
- uses: pre-commit-ci/lite-action@v1.0.1 | |
if: always() |