Skip to content

Enhance Makefile with improved help target and descriptions #5

Enhance Makefile with improved help target and descriptions

Enhance Makefile with improved help target and descriptions #5

Workflow file for this run

name: CI
on:
pull_request:
types: [synchronize, reopened, closed]
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
${{ github.workspace }}/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-