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"
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
- release-*
jobs:
variables:
uses: ./.github/workflows/variables.yaml
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 }}