From a26d8695f537f82b375edfa6d7883a29ef618d2a Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Fri, 27 Dec 2024 16:51:01 -0500 Subject: [PATCH] fix: Fixes github ci after removing Makefile --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a86cc5..a982ef6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,14 @@ jobs: config: ['debug', 'release'] steps: - uses: actions/checkout@v4 + - name: Install just. + run: brew install just - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Swift Version run: swift --version - name: Run ${{ matrix.xcode }} Tests - run: make CONFIG=${{ matrix.config }} test-library + run: just test --configuration ${{ matrix.config }} ubuntu: name: Ubuntu