Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 #108

Bump jinja2 from 3.1.3 to 3.1.4

Bump jinja2 from 3.1.3 to 3.1.4 #108

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
# https://github.com/python/mypy/issues/13627#issuecomment-1245613842
python-version: '3.10.6'
- name: Test
run: |
pip install -r requirements.txt
black . --check
mypy src/positron/__init__.py
pytest