From 96cc9c5c6faaafcd2648693a750d7f1e396e05c2 Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Fri, 8 Dec 2023 05:23:20 -0300 Subject: [PATCH] chore: add CI job for building library evolution --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3c004e2..9f27ec70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,16 @@ jobs: - name: Run tests run: make test-library + library-evolution: + name: Library (evolution) + runs-on: macos-13 + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 15 + run: sudo xcode-select -s /Applications/Xcode_15.0.1.app + - name: Build for library evolution + run: make build-for-library-evolution + examples: runs-on: macos-13 name: Build Examples