From b22e4e29c31e0936bff9145bc9e16c0168ae4dda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Sat, 5 Oct 2024 12:37:14 +0200 Subject: [PATCH] Add Swift Macro Compatibility Check GitHub Action --- .github/workflows/swift.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/swift.yaml b/.github/workflows/swift.yaml index 38665664..da244a6b 100644 --- a/.github/workflows/swift.yaml +++ b/.github/workflows/swift.yaml @@ -82,3 +82,17 @@ jobs: - name: Swiftdocs run: | .buildscript/build_swift_docs.sh ${{ runner.temp }}/swiftdocs + + check-macro-compatibility: + name: Check Macro Compatibility + runs-on: macos-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run Swift Macro Compatibility Check + uses: Matejkob/swift-macro-compatibility-check@v1 + with: + run-tests: false + major-versions-only: true