Bump hypothesis from 6.103.1 to 6.108.5 #10
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
# This workflow runs poetry against the repository. | |
# | |
# You can adjust the behavior by modifying this file. | |
name: Run poetry | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
poetry: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" # EOL 2025-10 | |
- "3.10" # EOL 2026-10 | |
- "3.11" # EOL 2027-10 | |
- "3.12" # EOL 2028-10 | |
experimental: [false] | |
include: | |
- python-version: 3.x | |
experimental: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install poetry | |
run: pipx install poetry | |
- name: setup python-${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: poetry | |
- name: poetry build | |
run: | | |
poetry build | |
tar -zvtf dist/templatise-*.tar.gz | grep templatise | |
- name: poetry check | |
run: poetry check |