Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
updated travis, added makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
decanus committed Jun 30, 2019
1 parent 9b4a661 commit ae632b8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@ language: swift
osx_image: xcode10.1
xcode_project: BeaconChain.xcodeproj
xcode_scheme: BeaconChain.Package

script: swift test

jobs:
fast_finish: true
include:
- script: make test
- script:
- make xcode
- make lint
env: ALLOW_FAILURE=true
allow_failures:
- env: ALLOW_FAILURE=true

notifications:
email: false
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.PHONY: documentation test link xcode

test:
swift test

lint:
swiftlint

documentation:
jazzy --author "yeeth" --author_url https://yeeth.af --github_url https://github.com/yeeth/BeaconChain.swift
rm -rf build/

xcode:
swift package generate-xcodeproj

0 comments on commit ae632b8

Please sign in to comment.