Skip to content

CI: Fix tests for Python 2.7. #14

CI: Fix tests for Python 2.7.

CI: Fix tests for Python 2.7. #14

Workflow file for this run

name: Python Tests
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.9, 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: MatteoH2O1999/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
python -m pip install --upgrade setuptools tox
- name: Run Tests
run: |
tox -e py
- name: Coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python -m pip install coveralls
coveralls --service=github
if: ${{ matrix.python == '2.7' }}