Files
authentik-kubernetes-operator/.gitea/workflows/ci.yaml
T
t.behrendt 74394b1dab
CI / install-dependencies (pull_request) Successful in 11m34s
CI / build check (pull_request) Successful in 1m21s
CI / check format (pull_request) Successful in 21s
CI / image check (pull_request) Failing after 15s
CI / check lint (pull_request) Failing after 1m38s
CI / test (pull_request) Successful in 20m14s
ci: fix ref to local workflows
2026-05-16 20:20:24 +02:00

53 lines
1.0 KiB
YAML

name: CI
on:
pull_request:
env:
GOPATH: /go_path
GOCACHE: /go_cache
RUNNER_TOOL_CACHE: /toolcache
jobs:
install-dependencies:
uses: ./.gitea/workflows/install-go-dependencies.yaml
build-check:
name: build check
needs: install-dependencies
uses: ./.gitea/workflows/run-go-script.yaml
with:
script: build
check-format:
name: check format
needs: build-check
uses: ./.gitea/workflows/run-go-script.yaml
with:
script: check-format
check-lint:
name: check lint
needs: build-check
uses: ./.gitea/workflows/run-go-script.yaml
with:
script: check-lint
test:
name: test
needs: build-check
uses: ./.gitea/workflows/run-go-script.yaml
with:
script: test
image-check:
name: image check
runs-on:
- ubuntu-latest
- linux_amd64
needs: build-check
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build image
run: make build-image