Skip to content

Create SECURITY.md

Create SECURITY.md #41

name: Run pre-commit
on:
push:
branches:
- main
pull_request:
jobs:
pre-commit:
name: Pre-commit
strategy:
matrix:
python-version: [3.9]
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: ⚙️ Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: ⚙️ Install dependencies
run: poetry install
- name: 🚀 Run pre-commit on all files
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always