Skip to content

πŸ“ Update README.md #12

πŸ“ Update README.md

πŸ“ Update README.md #12

Workflow file for this run

name: linting
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
linting:
runs-on: ubuntu-latest
steps:
# ----------------------------------------------
# check-out repo and set-up python
# ----------------------------------------------
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
# ----------------------------------------------
# load pip cache if cache exists
# ----------------------------------------------
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: ${{ runner.os }}-pip
# ----------------------------------------------
# install and run linters
# ----------------------------------------------
- run: python -m pip install black flake8
- run: |
flake8 .
black . --check