forked from matryer/xbar-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (32 loc) · 804 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
os: osx
osx_image: xcode11.2
addons:
homebrew:
packages:
- python
- shellcheck
- luarocks
- node
- cpanminus
- clisp
- golang
- r
casks:
- racket
before_install:
- pip3 install virtualenv
- mkdir ~/venv
- virtualenv -p python2 ~/venv
install:
- pip3 install pyflakes
- source ~/venv/bin/activate
- pip install pyflakes
- gem install rubocop
- luarocks install luacheck
- npm install -g jshint
- sudo cpanm Mozilla::CA
- go get -u golang.org/x/lint/golint
- export PATH="$PATH:${GOROOT:-$HOME/go}/bin"
- raco pkg install --deps search-auto rackjure
- Rscript -e 'install.packages("lintr", repos="http://cran.rstudio.com/")'
script: ./.test.py