Skip to content

The current version of Salt should use Python 3.10 #136

The current version of Salt should use Python 3.10

The current version of Salt should use Python 3.10 #136

Workflow file for this run

name: Pre-Commit
on: ["push", "pull_request"]
jobs:
Pre-Commit:
name: Run Pre-Commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Pre-Commit
env:
PIP_EXTRA_INDEX_URL: https://pypi-proxy.saltstack.net/root/local/+simple/
run: |
python -m pip install --upgrade pip
pip install pre-commit
pre-commit install --install-hooks
- name: Check ALL Files
run: |
pre-commit run --show-diff-on-failure --color=always --all-files