Skip to content

Commit

Permalink
[CI] setup github CI (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Jan 21, 2020
1 parent 8d38ee9 commit 3625b70
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

env:
DEVELOPER_DIR: /Applications/Xcode_11.3.app/Contents/Developer

jobs:

build:
name: Compile
runs-on: macOS-latest
steps:
- name: git checkout
uses: actions/checkout@v1

- name: xcode version
run: xcodebuild -version -sdk

- name: compile
run: swiftc nine41.swift

0 comments on commit 3625b70

Please sign in to comment.