From 2f2b89c115674c459bb01507ef91742cdb773497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=88=EC=A7=80=ED=9B=88?= Date: Mon, 30 Oct 2023 23:53:24 +0900 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ad589c7..920aec63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,20 +19,22 @@ jobs: name: macos 13 (Xcode 15.0.0) runs-on: macos-13 strategy: - matrix: - config: ['debug', 'release'] + matrix: + config: + - debug + - release steps: - name: Set Xcode version - uses: maxim-lobanov/setup-xcode@v1 - with: + uses: maxim-lobanov/setup-xcode@v1 + with: xcode-version: '15.0' - name: Checkout Package - uses: actions/checkout@v3 - with: + uses: actions/checkout@v3 + with: fetch-depth: 0 - name: View Swift Version - run: swift --version + run: swift --version - name: Build and Test - run: | + run: | swift build swift test