Bump jinja2 from 3.1.3 to 3.1.4 #46
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: PR | |
on: | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.12" | |
- uses: dschep/install-pipenv-action@v1 | |
- name: Install dependencies | |
run: | | |
pipenv install -d | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
pipenv run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
pipenv run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.12" | |
- uses: dschep/install-pipenv-action@v1 | |
- name: Install dependencies | |
run: | | |
pipenv install -d | |
- name: Configure PYTHONPATH | |
run: | | |
echo "PYTHONPATH=${PYTHONPATH}:${PWD}" >> $GITHUB_ENV | |
- name: Test with pytest | |
run: | | |
pipenv run pytest --asyncio-mode=strict |