16 lines
339 B
YAML
16 lines
339 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install
|
|
run: |
|
|
set -x
|
|
pip3 install --no-cache-dir -e /app 2>&1 | tail -30 || echo "Exit code: $?"
|
|
- name: Run tests
|
|
run: |
|
|
set -x
|
|
pytest /app/tests/ -v 2>&1 | tail -30 || echo "Exit code: $?" |