Bump to 0.14 #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint code | |
on: push | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Update setuptools pip and wheel | |
run: pip install -U setuptools pip wheel | |
- name: Install linting requirements | |
run: pip install -r requirements-lint.txt | |
- name: Lint code | |
run: flake8 --verbose |