Skip to content

bump minimum required python release from 3.7.x to 3.8.x #59

bump minimum required python release from 3.7.x to 3.8.x

bump minimum required python release from 3.7.x to 3.8.x #59

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
env:
PYTHON_VERSION: "${{ matrix.python-version }}"
run: |
python -m pip install --upgrade pip
pip install pipenv --upgrade
pipenv --python "$PYTHON_VERSION"
pipenv install --dev
- name: Run tests
env:
TOXENV: "py${{ matrix.python-version }}"
run: pipenv run tox