18 lines
326 B
YAML
18 lines
326 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install
|
|
run: pip install -e . pytest pytest-asyncio
|
|
- name: Test
|
|
run: python -m pytest tests/ -v |