Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 #407

Bump jinja2 from 3.1.3 to 3.1.4

Bump jinja2 from 3.1.3 to 3.1.4 #407

name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TrueBrain/[email protected]
unittests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python packages
run: |
pip install .[test] pytest-cov
- name: Test with pytest
run: |
pytest --cov=. --cov-report=xml
coverage report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3