gh-XcodesOrg-XcodesApp/.github/workflows/ci.yml
Brandon Evans d38ea666b8
Only run CI workflow on push to main
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.
2021-01-04 19:37:34 -07:00

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