Skip to content

Merge pull request #2256 from InstituteforDiseaseModeling/main #5598

Merge pull request #2256 from InstituteforDiseaseModeling/main

Merge pull request #2256 from InstituteforDiseaseModeling/main #5598

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install Python dependencies
run: |
sudo apt-get update
sudo apt-get install make
pip install black flake8
- name: Run Lint
run: |
make lint