Skip to content

update docs

update docs #22

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: ['4.4']
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.7"
- name: Install alfred3_interact
run: |
pip install .[dev]
pip list
- name: Run pytest
run: pytest