Skip to content

Enable CI

Enable CI #2

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8' ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- uses: dschep/[email protected]
- run: poetry install
- run: poetry run black . --check
- run: poetry run pytest