Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3 #49

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3 #49

Workflow file for this run

name: Static analysis
on: [pull_request]
jobs:
pre-commit-checks:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --show-diff-on-failure --color=always --all-files