18 lines
301 B
YAML
18 lines
301 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup
|
|
run: |
|
|
set -x
|
|
pip3 install -e /app
|
|
pip3 install pytest pytest-asyncio
|
|
- name: Run tests
|
|
run: |
|
|
cd /app
|
|
pytest tests/ -v
|
|
exit $? |