chore(ci): rename codesniffer workflows to linter
Some checks failed
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 / linter-shell (push) Has been cancelled
Mark stable commit / linter-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

- Rename ShellCheck workflow to linter-shell
- Rename Ruff workflow to linter-python
- Update workflow calls and dependencies accordingly

https://chatgpt.com/share/693ed61a-7490-800f-aef1-fce845e717a2
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-14 16:21:57 +01:00
parent 822c418503
commit f63b0a9f08
4 changed files with 12 additions and 12 deletions

View File

@@ -28,8 +28,8 @@ jobs:
test-virgin-root: test-virgin-root:
uses: ./.github/workflows/test-virgin-root.yml uses: ./.github/workflows/test-virgin-root.yml
codesniffer-shellcheck: linter-shell:
uses: ./.github/workflows/codesniffer-shellcheck.yml uses: ./.github/workflows/linter-shell.yml
codesniffer-ruff: linter-python:
uses: ./.github/workflows/codesniffer-ruff.yml uses: ./.github/workflows/linter-python.yml

View File

@@ -4,7 +4,7 @@ on:
workflow_call: workflow_call:
jobs: jobs:
codesniffer-ruff: linter-python:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@@ -4,7 +4,7 @@ on:
workflow_call: workflow_call:
jobs: jobs:
codesniffer-shellcheck: linter-shell:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -29,16 +29,16 @@ jobs:
test-virgin-root: test-virgin-root:
uses: ./.github/workflows/test-virgin-root.yml uses: ./.github/workflows/test-virgin-root.yml
codesniffer-shellcheck: linter-shell:
uses: ./.github/workflows/codesniffer-shellcheck.yml uses: ./.github/workflows/linter-shell.yml
codesniffer-ruff: linter-python:
uses: ./.github/workflows/codesniffer-ruff.yml uses: ./.github/workflows/linter-python.yml
mark-stable: mark-stable:
needs: needs:
- codesniffer-shellcheck - linter-shell
- codesniffer-ruff - linter-python
- test-unit - test-unit
- test-integration - test-integration
- test-env-nix - test-env-nix