Skip to content

Added option to change appearance of relfection from python #56

Added option to change appearance of relfection from python

Added option to change appearance of relfection from python #56

Workflow file for this run

name: Pre-Commit Checks
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
pip install pre-commit
pre-commit install
- name: Run pre-commit checks
run: |
source .venv/bin/activate
pre-commit run --all-files