Skip to content

Merge pull request #142 from jairhenrique/py312 #61

Merge pull request #142 from jairhenrique/py312

Merge pull request #142 from jairhenrique/py312 #61

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11","3.12"]
steps:
- uses: actions/checkout@v3.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install tox tox-gh-actions
- name: Test with tox
run: tox