build(deps-dev): bump jinja2 from 3.1.3 to 3.1.4 #483
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Branch Build and Test | |
on: | |
# Triggers the workflow on pull request events but only for the master branch | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry==1.5.1 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
cache: "poetry" | |
- run: poetry install | |
- run: | | |
poetry run poe lint | |
poetry run pytest | |
poetry build -f sdist | |
poetry build -f wheel | |
- if: ${{ matrix.python_version == '3.8' }} | |
run: poetry run poe doc |