Initial commit
This commit is contained in:
commit
e4c8a6fbf4
186 changed files with 29501 additions and 0 deletions
15
.github/actions/build/action.yaml
vendored
Normal file
15
.github/actions/build/action.yaml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue