Skip to content

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

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 #54

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Check code style
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "3.8"
architecture: x64
- name: Install dependencies
env:
PYTHON_VERSION: "3.8"
run: |
python -m pip install --upgrade pip
pip install pipenv --upgrade
pipenv --python "$PYTHON_VERSION"
pipenv install --dev
- name: Run tests
env:
TOXENV: "style"
run: pipenv run tox