Files
dataforge-cli/.gitea/workflows/ci.yml
7000pctAUTO 97c5954e45
Some checks failed
CI / test (push) Failing after 4m52s
Add Gitea Actions workflow: ci.yml
2026-02-03 06:15:23 +00:00

26 lines
543 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest click pyyaml jsonschema tomli
pip install -e .
- name: Run tests
run: pytest -v --tb=short