From 753f88ca8a098eb5f74f8fa7aec34048affa993e Mon Sep 17 00:00:00 2001 From: Ryu0118 Date: Sat, 11 Nov 2023 23:05:19 +0900 Subject: [PATCH] ci --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..5cc5bfc --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +name: Test + +on: + pull_request: + branches: [ "main" ] + paths-ignore: + - README.md + +jobs: + build: + name: Test + strategy: + fail-fast: false + matrix: + os: [macos-13] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Select Xcode 15 + run: sudo xcode-select -s /Applications/Xcode_15.0.app + + - name: Test + run: swift test