Skip to content

ohh it's now not deprecated #29

ohh it's now not deprecated

ohh it's now not deprecated #29

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
pip install poetry
poetry config settings.virtualenvs.create false
make init
- name: Test with pytest
run: |
make test