Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Updates for py37+ only #1

Updates for py37+ only

Updates for py37+ only #1

Workflow file for this run

name: test-py37+
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test/requirements.txt ]; then pip install -r test/requirements.txt; fi
- name: Run tests
run: pytest