Skip to content

Update .pre-commit-config.yaml #23

Update .pre-commit-config.yaml

Update .pre-commit-config.yaml #23

Workflow file for this run

name: check project via pre-commit hooks
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Python set up
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Python cache set up
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-py-cache
- name: install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: run pre-commit hooks
uses: pre-commit/action@v3.0.0
# - name: Test with pytest
# run: |
# pip install pytest
# pytest