diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 681f171..3140513 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,8 +28,8 @@ jobs: test-virgin-root: uses: ./.github/workflows/test-virgin-root.yml - codesniffer-shellcheck: - uses: ./.github/workflows/codesniffer-shellcheck.yml + linter-shell: + uses: ./.github/workflows/linter-shell.yml - codesniffer-ruff: - uses: ./.github/workflows/codesniffer-ruff.yml + linter-python: + uses: ./.github/workflows/linter-python.yml diff --git a/.github/workflows/codesniffer-ruff.yml b/.github/workflows/linter-python.yml similarity index 94% rename from .github/workflows/codesniffer-ruff.yml rename to .github/workflows/linter-python.yml index d7b1297..10fd460 100644 --- a/.github/workflows/codesniffer-ruff.yml +++ b/.github/workflows/linter-python.yml @@ -4,7 +4,7 @@ on: workflow_call: jobs: - codesniffer-ruff: + linter-python: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/codesniffer-shellcheck.yml b/.github/workflows/linter-shell.yml similarity index 92% rename from .github/workflows/codesniffer-shellcheck.yml rename to .github/workflows/linter-shell.yml index 7e4e01b..5a08b19 100644 --- a/.github/workflows/codesniffer-shellcheck.yml +++ b/.github/workflows/linter-shell.yml @@ -4,7 +4,7 @@ on: workflow_call: jobs: - codesniffer-shellcheck: + linter-shell: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/mark-stable.yml b/.github/workflows/mark-stable.yml index a9c9a77..7144f7d 100644 --- a/.github/workflows/mark-stable.yml +++ b/.github/workflows/mark-stable.yml @@ -29,16 +29,16 @@ jobs: test-virgin-root: uses: ./.github/workflows/test-virgin-root.yml - codesniffer-shellcheck: - uses: ./.github/workflows/codesniffer-shellcheck.yml + linter-shell: + uses: ./.github/workflows/linter-shell.yml - codesniffer-ruff: - uses: ./.github/workflows/codesniffer-ruff.yml + linter-python: + uses: ./.github/workflows/linter-python.yml mark-stable: needs: - - codesniffer-shellcheck - - codesniffer-ruff + - linter-shell + - linter-python - test-unit - test-integration - test-env-nix