22 lines
385 B
YAML
22 lines
385 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
run: |
|
|
ls -la
|
|
pwd
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -e . pytest pytest-asyncio
|
|
- name: Run tests
|
|
run: |
|
|
python -m pytest tests/ -v |