Skip to content

Fix the documentation as a result of PR #15 #29

Fix the documentation as a result of PR #15

Fix the documentation as a result of PR #15 #29

Workflow file for this run

name: build
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Run in all these versions of Python
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install pipenv
run: pip install pipenv
- name: Install
run: make install-dev
- name: Tests
run: make test