21 lines
428 B
YAML
21 lines
428 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install package
|
|
run: pip install -e ".[dev]"
|
|
- name: Run integration tests only
|
|
run: pytest tests/integration/ -v --tb=long
|