Skip to content

Get rid of Module

Get rid of Module #350

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install pipenv
run: python -m pip install --user pipenv
- name: Install deps
run: pipenv install && pipenv install --dev
- name: QA
run: ./run -a
- name: Test
run: pipenv run pytest tests
- name: End2End tests
run: ./scripts/run-e2e-tests