16 lines
275 B
YAML
16 lines
275 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup and test
|
|
run: |
|
|
#!/bin/bash
|
|
set -e
|
|
pip3 install -e /app
|
|
pip3 install pytest pytest-asyncio
|
|
cd /app
|
|
pytest tests/ -v |