Files
authentik-kubernetes-operator/.gitea/workflows/run-go-script.yaml
T
t.behrendt 6b6a56822b
CI / install-dependencies (pull_request) Successful in 15s
CI / image check (pull_request) Failing after 5s
CI / check lint (pull_request) Failing after 11s
CI / check format (pull_request) Successful in 1m4s
CI / test (pull_request) Successful in 1m22s
CI / build check (pull_request) Successful in 5m49s
ci: fix ref to local workflows
2026-05-17 10:41:50 +02:00

39 lines
1.0 KiB
YAML

name: Run Go Script
on:
workflow_call:
inputs:
script:
description: The script to run
required: true
type: string
jobs:
run-script:
runs-on:
- ubuntu-latest
- linux_amd64
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
check-latest: true
- name: Create cache key
id: go-cache-key
uses: ./.gitea/actions/go-cache-key
- name: Install dependencies from Cache
id: cache-go
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
/go_path
/go_cache
key: go_path-${{ steps.go-cache-key.outputs.hash }}
restore-keys: |-
go_cache-${{ steps.go-cache-key.outputs.hash }}
- name: Run script
run: make ${{ inputs.script }}