update pendulum version for python 3.12 #91
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: Run Tox in Multiple Environments | |
on: | |
pull_request | |
jobs: | |
build: | |
runs-on: ${{matrix.platform}} | |
if: startsWith(github.head_ref, 'feature') || startsWith(github.head_ref, 'fix') | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: | | |
3.8 | |
3.9 | |
3.10 | |
3.11 | |
3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install poetry tox | |
- name: Test with tox | |
run: poetry run tox |