Skip to content

feat(SiS): reorganize code in SiS app #27

feat(SiS): reorganize code in SiS app

feat(SiS): reorganize code in SiS app #27

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ vars.PYTHON_VERSION }}
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
pip install pre-commit
pip install -r requirements.txt
- name: Run pre-commit
run: pre-commit run --all-files