This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
Bring internal changes to public origin #30
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: Pull Request Workflow | |
on: [pull_request] | |
jobs: | |
run-tests: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Git checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Run tests | |
run: swift test | |