Skip to content

Wordpress Security Scanner #224

Wordpress Security Scanner

Wordpress Security Scanner #224

Workflow file for this run

name: "lint"
on:
push:
branches: [ '**' ]
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit==2.20.0
- name: Run pre-commit
run: pre-commit run --all-files