CI with bash shebang

This commit is contained in:
2026-03-22 12:47:47 +00:00
parent 0f1efc358b
commit 702a427d14

View File

@@ -6,13 +6,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup
- name: Setup and test
run: |
set -x
#!/bin/bash
set -e
pip3 install -e /app
pip3 install pytest pytest-asyncio
- name: Run tests
run: |
cd /app
pytest tests/ -v
exit $?