Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 702a427d14
Some checks failed
CI / test (push) Failing after 1s
CI with bash shebang
2026-03-22 12:47:47 +00:00

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