Skip to content

SS 410 create a homepage with a new look #267

SS 410 create a homepage with a new look

SS 410 create a homepage with a new look #267

Workflow file for this run

name: Pre-commit linters and code checks
on:
pull_request:
paths-ignore:
- 'README.md'
push:
branches:
- develop
paths-ignore:
- 'README.md'
jobs:
pre_commit:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pre-commit==3.3.3
# Currently pre-commit is run for all staged files.
# TODO: In the future we can run using --all-files
- name: Run pre-commit
run: pre-commit run