Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 #46

Bump jinja2 from 3.1.3 to 3.1.4

Bump jinja2 from 3.1.3 to 3.1.4 #46

Workflow file for this run

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