Skip to content

Merge pull request #2257 from RCarter-IDM/pydata #5601

Merge pull request #2257 from RCarter-IDM/pydata

Merge pull request #2257 from RCarter-IDM/pydata #5601

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