Skip to content

Bump version: 2.7.0 -> 2.7.1 #74

Bump version: 2.7.0 -> 2.7.1

Bump version: 2.7.0 -> 2.7.1 #74

Workflow file for this run

name: GitHub Tests
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: LizardByte/setup-python-action@master
with:
python-version: ${{ matrix.python-version }}
env:
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install tox tox-gh-actions
- name: Test with tox
run: tox