From 58a8dc44a5c989abf5aad7bae5a50cc73ab0b25a Mon Sep 17 00:00:00 2001 From: GErP83 Date: Wed, 11 Feb 2026 14:28:56 +0100 Subject: [PATCH] add new workflow step --- .github/workflows/testing.yml | 4 ++++ Makefile | 3 +++ README.md | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 0f7d375..69c9612 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -7,6 +7,10 @@ on: jobs: + api_breakage: + name: Check API breakage + uses: BinaryBirds/github-workflows/.github/workflows/api_breakage.yml@main + swiftlang_checks: name: Swiftlang Checks uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main diff --git a/Makefile b/Makefile index 76dbcee..65adbac 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,9 @@ baseUrl = https://raw.githubusercontent.com/BinaryBirds/github-workflows/refs/he check: symlinks language deps lint headers +breakage: + curl -s $(baseUrl)/check-api-breakage.sh | bash + symlinks: curl -s $(baseUrl)/check-broken-symlinks.sh | bash diff --git a/README.md b/README.md index 2941e60..bb35e07 100644 --- a/README.md +++ b/README.md @@ -145,4 +145,4 @@ The following database driver implementations are available for use: ## Contributing -[Pull requests](https://github.com/feather-framework/feather-mysql-database/pulls) are welcome. Please keep changes focused and include tests for new logic. 🙏 +[Pull requests](https://github.com/feather-framework/feather-mysql-database/pulls) are welcome. Please keep changes focused and include tests for new logic.