Skip to content

Commit

Permalink
Add Ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Dec 4, 2023
1 parent 0710258 commit ebf101b
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
push:
branches:
- main
- case-key-paths
pull_request:
branches:
- '*'
workflow_dispatch:

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
macos:
name: macos 13 (Xcode 15.0.0)
runs-on: macos-13
strategy:
matrix:
config:
- debug
- release
steps:
- name: Set Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Checkout Package
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: View Swift Version
run: swift --version
- name: Build and Test
run: |
swift build
swift test

0 comments on commit ebf101b

Please sign in to comment.