Skip to content

Update required Python version to 3.9 in pyproject.toml #4

Update required Python version to 3.9 in pyproject.toml

Update required Python version to 3.9 in pyproject.toml #4

Workflow file for this run

name: Lint
on:
push:
paths:
- "src/**"
- "*.py"
- "*.toml"
- "requirements.txt"
- ".github/workflows/lint.yml"
pull_request:
paths:
- "src/**"
- "*.py"
- "*.toml"
- "requirements.txt"
- ".github/workflows/lint.yml"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Clear Cache
run: sudo rm -rf ~/.cache/pip
- name: Install Dependencies
run: make init
- name: Run Linter
run: make lint