Files
rfd-notify/.github/workflows/pre-commit.yml
Dave Gallant 9ba64a3de5 Migrate to python (#265)
* Add initial python migration

* Add pylint

* Add pre-commit

* Add Dockerfile

* Add expression matching

* Use shelve to store previous matches

* Add notifications

* Calculate post age

* Update README.md
2023-02-20 23:23:29 -05:00

24 lines
445 B
YAML

name: pre-commit
on:
pull_request:
push:
branches: [main]
env:
PYTHON_VERSION: "3.11"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
pip install poetry==1.3.2
poetry install
- uses: pre-commit/action@v3.0.0