21 lines
509 B
YAML
21 lines
509 B
YAML
name: Tests
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python3 -m pip install -e . --break-system-packages
|
|
python3 -m pip install pytest --break-system-packages
|
|
|
|
- name: Run tests
|
|
run: python3 -m pytest tests/ -v --tb=short
|
|
|
|
- name: Smoke test CLI
|
|
run: |
|
|
cortex version
|
|
cortex triage score "test task"
|