12 lines
221 B
YAML
12 lines
221 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout and test
|
|
run: |
|
|
set -x
|
|
pip3 install -e . && pip3 install pytest pytest-asyncio && pytest tests/ -v |