mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2025-03-11 16:01:13 -04:00
27 lines
482 B
YAML
27 lines
482 B
YAML
sudo: required
|
|
language: ruby c
|
|
|
|
matrix:
|
|
include:
|
|
#- os: osx
|
|
# compiler: clang
|
|
# osx_image: xcode7.3
|
|
- os: linux
|
|
dist: trusty
|
|
rvm: "2.4"
|
|
compiler: gcc
|
|
- os: linux
|
|
dist: xenial
|
|
rvm: "2.7"
|
|
compiler: clang
|
|
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install --assume-yes --quiet gcc-multilib; fi
|
|
|
|
install:
|
|
- gem install rspec
|
|
- gem install rubocop -v 0.57.2
|
|
|
|
script:
|
|
- cd test && rake ci
|