Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryu0118 committed Nov 11, 2023
1 parent f78d191 commit 753f88c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 753f88c

Please sign in to comment.