Skip to content

Add Icons and Installation Docs #55

Add Icons and Installation Docs

Add Icons and Installation Docs #55

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches:
- main # Adjust the branch name if needed
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files