Skip to content

Bump jinja2 from 3.1.2 to 3.1.3 #6

Bump jinja2 from 3.1.2 to 3.1.3

Bump jinja2 from 3.1.2 to 3.1.3 #6

Workflow file for this run

name: "CI"
on:
workflow_dispatch:
pull_request:
branches:
- "main"
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run unit tests
env:
APP_SETTINGS: config
run: pytest -v