20 lines
353 B
YAML
20 lines
353 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Debug
|
|
run: |
|
|
set -x
|
|
whoami
|
|
pwd
|
|
ls -la /app
|
|
- name: Install
|
|
run: pip3 install -e /app && pip3 install pytest pytest-asyncio
|
|
- name: Run tests
|
|
run: pytest /app/tests/ -v |