Skip to content

update pendulum version for python 3.12 #91

update pendulum version for python 3.12

update pendulum version for python 3.12 #91

Workflow file for this run

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