Files
shell-history-alias-generator/.gitea/workflows/ci.yml
7000pctAUTO 393399485a
Some checks failed
CI / test (push) Failing after 5s
fix: minimal CI workflow
2026-02-01 08:58:13 +00:00

27 lines
436 B
YAML

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Verify Python
run: python --version
- name: Install pytest
run: pip install pytest
- name: Run pytest
run: pytest tests/ -v || exit 1