Skip to content

Package Update: Bump jinja2 from 3.1.2 to 3.1.3 #209

Package Update: Bump jinja2 from 3.1.2 to 3.1.3

Package Update: Bump jinja2 from 3.1.2 to 3.1.3 #209

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python latest
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Test with pytest
run: make test