Some checks failed
Ruff (Python code sniffer) / codesniffer-ruff (push) Has been cancelled
ShellCheck / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
- Introduce dedicated ShellCheck workflow for Bash scripts - Add Ruff as Python code sniffer for src/ and tests/ - Integrate both sniffers into main CI pipeline - Require successful sniffer runs before marking a release as stable - Ensure consistent code quality checks across CI and release workflows https://chatgpt.com/share/693d5b26-293c-800f-999d-48b2950b9417
36 lines
700 B
YAML
36 lines
700 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test-unit:
|
|
uses: ./.github/workflows/test-unit.yml
|
|
|
|
test-integration:
|
|
uses: ./.github/workflows/test-integration.yml
|
|
|
|
test-env-virtual:
|
|
uses: ./.github/workflows/test-env-virtual.yml
|
|
|
|
test-env-nix:
|
|
uses: ./.github/workflows/test-env-nix.yml
|
|
|
|
test-e2e:
|
|
uses: ./.github/workflows/test-e2e.yml
|
|
|
|
test-virgin-user:
|
|
uses: ./.github/workflows/test-virgin-user.yml
|
|
|
|
test-virgin-root:
|
|
uses: ./.github/workflows/test-virgin-root.yml
|
|
|
|
codesniffer-shellcheck:
|
|
uses: ./.github/workflows/codesniffer-shellcheck.yml
|
|
|
|
codesniffer-ruff:
|
|
uses: ./.github/workflows/codesniffer-ruff.yml
|