Skip to content

✨ keep prompt at bottom of screen #67

✨ keep prompt at bottom of screen

✨ keep prompt at bottom of screen #67

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install ask
run: pip install -e .
- name: install dev dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: lint check with flake8
run: flake8 . --max-line-length=88
- name: lint check with black
run: black --check .
- name: Test
run: pytest