terraform-provider-stackitp.../.github/actions/build/action.yaml
2026-01-22 16:00:34 +01:00

19 lines
No EOL
466 B
YAML

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Build
description: "Build pipeline"
inputs:
go-version:
description: "Go version to install"
required: true
runs:
using: "composite"
steps:
- name: Install Go ${{ inputs.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go-version }}
- name: Install project tools and dependencies
shell: bash
run: make project-tools