diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3649767..5b86ae7 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -11,7 +11,7 @@ env: REGISTRY: gcr.forust.xyz jobs: - lint: + lint-prettier: runs-on: [self-hosted, linux, arch, homelab] steps: - name: Checkout repository @@ -37,6 +37,12 @@ jobs: node:22-alpine \ sh -lc 'npx --yes prettier@3 --check --ignore-unknown "$@"' sh "${prettier_files[@]}" + lint-ruff: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint Python with Ruff shell: bash run: | @@ -46,6 +52,12 @@ jobs: ghcr.io/astral-sh/ruff:latest \ check . + lint-yaml: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint YAML syntax shell: bash run: | @@ -55,6 +67,12 @@ jobs: cytopia/yamllint:latest \ -c .yamllint . + lint-dockerfiles: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint Dockerfiles shell: bash run: | @@ -80,15 +98,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Validate YAML syntax - shell: bash - run: | - docker run --rm \ - -v "$PWD:/work" \ - -w /work \ - cytopia/yamllint:latest \ - -c .yamllint . - - name: Validate Kubernetes manifests shell: bash run: | @@ -112,6 +121,7 @@ jobs: "${manifests[@]}" build: + needs: [lint-prettier, lint-ruff, lint-yaml, lint-dockerfiles, validate] if: github.event_name != 'pull_request' && (github.ref_name == 'main' || github.ref_name == 'dev') runs-on: [self-hosted, linux, arch, homelab] steps: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3649767..5b86ae7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ env: REGISTRY: gcr.forust.xyz jobs: - lint: + lint-prettier: runs-on: [self-hosted, linux, arch, homelab] steps: - name: Checkout repository @@ -37,6 +37,12 @@ jobs: node:22-alpine \ sh -lc 'npx --yes prettier@3 --check --ignore-unknown "$@"' sh "${prettier_files[@]}" + lint-ruff: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint Python with Ruff shell: bash run: | @@ -46,6 +52,12 @@ jobs: ghcr.io/astral-sh/ruff:latest \ check . + lint-yaml: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint YAML syntax shell: bash run: | @@ -55,6 +67,12 @@ jobs: cytopia/yamllint:latest \ -c .yamllint . + lint-dockerfiles: + runs-on: [self-hosted, linux, arch, homelab] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Lint Dockerfiles shell: bash run: | @@ -80,15 +98,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Validate YAML syntax - shell: bash - run: | - docker run --rm \ - -v "$PWD:/work" \ - -w /work \ - cytopia/yamllint:latest \ - -c .yamllint . - - name: Validate Kubernetes manifests shell: bash run: | @@ -112,6 +121,7 @@ jobs: "${manifests[@]}" build: + needs: [lint-prettier, lint-ruff, lint-yaml, lint-dockerfiles, validate] if: github.event_name != 'pull_request' && (github.ref_name == 'main' || github.ref_name == 'dev') runs-on: [self-hosted, linux, arch, homelab] steps: