Skip to content

build(deps-dev): bump jinja2 from 3.1.2 to 3.1.3 #16

build(deps-dev): bump jinja2 from 3.1.2 to 3.1.3

build(deps-dev): bump jinja2 from 3.1.2 to 3.1.3 #16

Workflow file for this run

name: Test
on: [pull_request, push]
jobs:
test_suite:
name: "Test"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: "Clone Repository"
uses: actions/checkout@v3
- name: "Setup Python"
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: "Install Dependencies"
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: "Tox"
run: |
tox