remove init hook, use default make target

This commit is contained in:
alu
2026-09-02 16:25:03 +00:00
parent b05cd6fd7a
commit 2d987cd13c
2 changed files with 12 additions and 7 deletions
+3 -3
View File
@@ -22,10 +22,10 @@ jobs:
with:
go-version-file: 'go.mod'
- name: Check and Run `make workflow-init`
- name: Check and Run `make` Default Target
run: |
if make -n workflow-init > /dev/null 2>&1; then
make workflow-init
if command -v make &> /dev/null; then
make
fi
- name: Initialize Go