Bump jinja2 from 3.0.3 to 3.1.4 #86
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-18.04 | |
name: Code linting | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Update pip and install deps | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install check-manifest flake8 | |
- name: Check MANIFEST.in in a source package | |
run: check-manifest -v | |
- name: Static code analysis and code style check | |
run: flake8 ./ |