action test #7
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
name: PullRequestTest | |
on: | |
pull_request: | |
branches: | |
- release | |
push: | |
branches: | |
- test/action | |
jobs: | |
build_test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "14.2.0" | |
- name: Bring ignored files | |
uses: actions/checkout@v3 | |
with: | |
repository: Pepsi-Club/YamYamPick-ignored | |
path: XCConfig/ | |
token: ${{ secrets.ACTION_TOKEN }} | |
- name: Install Tuist | |
run: curl -Ls https://install.tuist.io|bash | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- name: Tuist Clean | |
run: tuist clean | |
- name: Tuist Fetch | |
run: tuist fetch | |
- name: Tuist Build Test | |
run: tuist build |