Skip to content

Update README

Update README #19

Workflow file for this run

# This workflow will install Python dependencies and run the linter.
name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
lint:
# Ubuntu 22.04 is the newest version that has Python 3.7 for testing.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v5
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 mypy
pip install -r requirements.txt
- name: Lint with flake8
run: ./lint.sh