Get future pparams #19
Workflow file for this run
  
    
      This file contains hidden or 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: repo_tests | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| PY_COLORS: "1" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v5 | |
| - name: Set up python | |
| id: setup-python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: | | |
| python3 -m venv .venv | |
| source .venv/bin/activate | |
| make install | |
| - name: Load cached pre-commit env | |
| id: cached-pre-commit | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pre-commit | |
| key: pre-commit-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }} | |
| - name: Install pre-commit hooks | |
| run: | | |
| mkdir -p ~/.cache/pre-commit | |
| true > ~/.cache/pre-commit/pre-commit.log | |
| source .venv/bin/activate | |
| pre-commit install-hooks --color=always | |
| retval="$?" | |
| if [ "$retval" -ne 0 ]; then | |
| cat ~/.cache/pre-commit/pre-commit.log | |
| fi | |
| exit "$retval" | |
| - name: Run pre-commit linters | |
| run: | | |
| source .venv/bin/activate | |
| pre-commit run -a --show-diff-on-failure --color=always |