-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (22 loc) · 683 Bytes
/
.travis.yml
File metadata and controls
26 lines (22 loc) · 683 Bytes
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
language: python
python:
- "3.8"
- "3.9"
dist: "bionic"
os: "linux"
cache:
directories:
- $HOME/.cache/wsyntree
install:
- python -m pip install requests coloredlogs pygit2
- python -m pip install -r requirements.txt
- python setup.py install
script:
- wsyntree-collector file -l javascript tests/stuff.js
- wsyntree-collector file -l python tests/stuff.py
- wsyntree-collector file -l ruby tests/stuff.rb
- wsyntree-collector file -l c tests/stuff.c
- wsyntree-collector file -l cpp tests/stuff.cpp
- wsyntree-collector file -l java tests/stuff.java
- wsyntree-collector file -l rust tests/stuff.rs
- wsyntree-collector file -l go tests/stuff.go