Skip to content

docs: update README with cli info #62

docs: update README with cli info

docs: update README with cli info #62

Workflow file for this run

name: Run Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create .env file
run: cat env.* > .env
- name: Load .env file
uses: xom9ikk/[email protected]
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'poetry'
- run: poetry install
- name: setup pytest.ini
run: mv .github/pytest.ini pytest.ini
- name: Linting
run: poetry run ruff check
- name: Run tests
env:
CI: "true"
run: poetry run pytest