21 lines
435 B
YAML
21 lines
435 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pip install pytest click pyyaml jsonschema tomli
|
|
python -m pytest tests/ -v --tb=short 2>&1 || true
|