-
Notifications
You must be signed in to change notification settings - Fork 819
37 lines (32 loc) · 899 Bytes
/
basic-checks.yaml
File metadata and controls
37 lines (32 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "basic checks"
on:
workflow_call:
outputs:
version:
description: "The short SHA to use as a version string"
value: ${{ jobs.variables.outputs.version }}
golang_version:
description: "The golang version for this project"
value: ${{ jobs.variables.outputs.golang_version }}
jobs:
variables:
uses: ./.github/workflows/variables.yaml
golang:
needs:
- variables
uses: ./.github/workflows/golang.yaml
secrets: inherit
with:
golang_version: ${{ needs.variables.outputs.golang_version }}
helm:
needs:
- variables
uses: ./.github/workflows/helm.yaml
with:
golang_version: ${{ needs.variables.outputs.golang_version }}
code-scanning:
needs:
- variables
uses: ./.github/workflows/code_scanning.yaml
with:
golang_version: ${{ needs.variables.outputs.golang_version }}