fix: macos 버전 지정 #187
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/my-project.yml | |
name: MOIT | |
on: | |
pull_request: | |
branches: [ develop ] | |
push: | |
branches: [ fix/actions-버그-수정 ] | |
jobs: | |
build: | |
name: test action | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Tuist | |
run: curl -Ls https://install.tuist.io | bash | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '14.3.1' | |
- name: Access Available | |
run: chmod +x Scripts/setup_remote.sh | |
- name: Install Setup Script and Fetch Dependencies | |
run: ./Scripts/setup_remote.sh | |
- name: Build and Test | |
run: tuist test MOIT-Workspace | |