Skip to content

cli: add e2e tests and documentation (#4) #32

cli: add e2e tests and documentation (#4)

cli: add e2e tests and documentation (#4) #32

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Run tests
run: |
make test