Bump jinja2 from 3.0.3 to 3.1.3 #49
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
# Build package and run tests. | |
name: Tests | |
on: | |
push: | |
branches: [main] | |
paths: | |
- ts2vg/** | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build and install ts2vg and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install ".[tests]" | |
- name: Run tests | |
working-directory: tests | |
run: | | |
pytest |