15 lines
280 B
YAML
15 lines
280 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container: python:3.11-slim
|
|
steps:
|
|
- name: Install package
|
|
run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v |