Skip to content

[no-relnotes] Use reusable workflows for CI #2

[no-relnotes] Use reusable workflows for CI

[no-relnotes] Use reusable workflows for CI #2

Workflow file for this run

name: "basic checks"

Check failure on line 1 in .github/workflows/basic-checks.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/basic-checks.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: helm
on:
workflow_call:
inputs:
golang_version:
required: true
type: string
jobs:
helm:
needs:
- variables
users:
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 }}
golang:
needs:
- variables
uses: ./.github/workflows/golang.yaml
with:
golang_version: ${{ needs.variables.outputs.golang_version }}