terraform-provider-stackitp.../.github/actions/build/action.yaml
2023-09-07 11:34:45 +01:00

15 lines
No EOL
365 B
YAML

name: Build
inputs:
go-version:
description: "Go version to install"
required: true
runs:
using: "composite"
steps:
- name: Install Go ${{ inputs.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ inputs.go-version }}
- name: Install project tools and dependencies
shell: bash
run: make project-tools