Skip to content

Version 1.5.1

Version 1.5.1 #27

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.x", "3.x"]
name: "pytest: Python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .
- name: Install test dependencies
run: pip install pytest pytest-cov
- name: Test with pytest
run: pytest --cov=. --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: false
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install black
run: pip install black
- name: Run black
run: black --check .