mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
The pull request event should handle running it on other branches, assuming that they're at least submitted as draft PRs. Right now this is running twice on PR branches which is unnecessary.
17 lines
280 B
YAML
17 lines
280 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macOS-11.0
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Run tests
|
|
env:
|
|
DEVELOPER_DIR: /Applications/Xcode_12.2.app
|
|
run: xcodebuild test -scheme Xcodes
|