Skip to content

Merge pull request #10 from ritual-net/dev #3

Merge pull request #10 from ritual-net/dev

Merge pull request #10 from ritual-net/dev #3

Workflow file for this run

# pre-commit workflow
#
# Ensures the codebase passes the pre-commit stack.
name: python_ci
on: [pull_request, push]
jobs:
python_ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- name: Install dependencies (python)
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run pre-commit hooks
uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files --show-diff-on-failure