Skip to content

Instantly share code, notes, and snippets.

@xeioex
Created July 23, 2025 22:24
Show Gist options
  • Save xeioex/a63eecb9461a267ce65c45a406834ec8 to your computer and use it in GitHub Desktop.
Save xeioex/a63eecb9461a267ce65c45a406834ec8 to your computer and use it in GitHub Desktop.
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 773eaba..e7750c0 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -40,7 +40,7 @@ jobs:
- master
- stable-1.28
build:
- - debug
+ - debug
- debug-static
- release
@@ -61,7 +61,7 @@ jobs:
build: debug
runs-on: ${{ matrix.runner }}-latest
-
+
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -103,12 +103,12 @@ jobs:
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
run: make BUILD=${{ matrix.build }} check
- - name: run unit-tests
+ - name: run unit-tests
# always run if build succeeds
if: ${{ !cancelled() && steps.build.outcome == 'success' && runner.os != 'macOS' }}
run: make BUILD=${{ matrix.build }} unittest
- - name: run tests
+ - name: run tests
# always run if build succeeds
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
run: make BUILD=${{ matrix.build }} TEST_PREREQ= test
diff --git a/Makefile b/Makefile
index b39124a..250c0d2 100644
--- a/Makefile
+++ b/Makefile
@@ -106,5 +106,5 @@ clean: ## Cleanup everything
build-%: ## Build with the specified configuration. E.g. make build-sanitize.
$(MAKE) build BUILD="$*"
-test-%: ## Test with the specified configuration.
+test-%: ## Test with the specified configuration.
$(MAKE) test BUILD="$*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment