Skip to content

feat: add support for specifying a custom name #21

feat: add support for specifying a custom name

feat: add support for specifying a custom name #21

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: CI
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy3'
coverage:
- '5.5'
- '6.0'
name: Python ${{ matrix.python }} on coverage ${{ matrix.coverage }}
steps:
- uses: actions/checkout@v2
- name: Setup python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install coverage==${{ matrix.coverage}} && pip install . && pip install -r requirements-dev.txt
- name: Run tests
run: python -m pytest