mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-03-12 21:23:05 -07:00
- Create individual workflow files for ruff, mypy, and pytest - Each workflow has its own status badge for independent monitoring - Ruff badge shows code quality status - Mypy badge shows type checking status - Pytest badge shows multi-version testing status - Update README with all three badges and clear status documentation - Remove combined tests.yml in favor of granular workflows
40 lines
977 B
YAML
40 lines
977 B
YAML
name: pytest
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
pytest:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install system dependencies
|
|
run: sudo apt-get update && sudo apt-get install -y p7zip-full transmission-cli
|
|
|
|
- name: Install uv
|
|
run: python -m pip install --upgrade pip uv==0.9.28
|
|
|
|
- name: Install project dependencies
|
|
run: |
|
|
uv venv .venv
|
|
uv pip install --python .venv/bin/python ".[dev]"
|
|
|
|
- name: Run tests
|
|
env:
|
|
HATE_CRACK_RUN_E2E: "0"
|
|
HATE_CRACK_RUN_DOCKER_TESTS: "0"
|
|
HATE_CRACK_RUN_LIVE_TESTS: "0"
|
|
HATE_CRACK_SKIP_INIT: "1"
|
|
run: .venv/bin/python -m pytest
|