Files
2026-02-04 02:39:22 +00:00

34 lines
660 B
YAML

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
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'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install PyYAML click
- name: Run tests
run: |
python -m pytest -v
- name: Run linting
run: |
pip install ruff
python -m ruff check cmdparse/ tests/