Skip to content

swift_syntax_build_universal.sh 업데이트 #47

swift_syntax_build_universal.sh 업데이트

swift_syntax_build_universal.sh 업데이트 #47

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-13
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Xcode Select
run: sudo xcode-select -s /Applications/Xcode_15.0.app
- name: Build
run: swift build
- name: Run Tests
run: swift test