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.