Skip to content

Create test_smoke.py #5

Create test_smoke.py

Create test_smoke.py #5

Workflow file for this run

name: ci
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint & Test
run: |
python -m pytest -q