Extend workflows to allow for quirks.

This commit is contained in:
2025-12-16 12:19:28 +00:00
parent dd4f84aebd
commit 08bda799dd
3 changed files with 63 additions and 0 deletions
+21
View File
@@ -44,6 +44,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Run workflow prepare script
run: |
if [ -f "./workflow-prepare.sh" ]; then
chmod +x ./workflow-prepare.sh
./workflow-prepare.sh
fi
- name: Run tests
uses: lukaszraczylo/shared-actions/.github/actions/go-test@main
with:
@@ -62,6 +69,13 @@ jobs:
with:
fetch-depth: 0
- name: Run workflow prepare script
run: |
if [ -f "./workflow-prepare.sh" ]; then
chmod +x ./workflow-prepare.sh
./workflow-prepare.sh
fi
- name: Calculate version
id: semver
uses: lukaszraczylo/shared-actions/.github/actions/semver@main
@@ -83,6 +97,13 @@ jobs:
with:
fetch-depth: 0
- name: Run workflow prepare script
run: |
if [ -f "./workflow-prepare.sh" ]; then
chmod +x ./workflow-prepare.sh
./workflow-prepare.sh
fi
- name: Setup Go
uses: actions/setup-go@v5
with: