Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 in /dev-requirements #265

Bump jinja2 from 3.1.3 to 3.1.4 in /dev-requirements

Bump jinja2 from 3.1.3 to 3.1.4 in /dev-requirements #265

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install .[test]
- name: Lint with flake8
run: |
python -m flake8
- name: Test sorting wioth isort
run: |
python -m isort --verbose --check-only --diff chaste_codegen tests setup.py
- name: Test with pytest
run: |
python -m pytest --cov --cov-config=.coveragerc
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos