File tree Expand file tree Collapse file tree 3 files changed +72
-0
lines changed Expand file tree Collapse file tree 3 files changed +72
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Java
2+ on :
3+ workflow_dispatch :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - " *"
9+ pull_request :
10+ # ! paths:
11+ # ! - "java/**"
12+ jobs :
13+ coverage :
14+ name : Test
15+ runs-on : ubuntu-18.04
16+ steps :
17+ - uses : actions/checkout@v2
18+
19+ - name : Run tests
20+ run : make test-java
Original file line number Diff line number Diff line change 1+ name : JavaScript
2+ on :
3+ workflow_dispatch :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - " *"
9+ pull_request :
10+ # ! paths:
11+ # ! - "javascript/**"
12+ jobs :
13+ coverage :
14+ name : Test
15+ runs-on : ubuntu-18.04
16+ steps :
17+ - uses : actions/checkout@v2
18+
19+ - name : Run tests
20+ run : make test-javascript
Original file line number Diff line number Diff line change 1+ name : Python
2+ on :
3+ workflow_dispatch :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - " *"
9+ pull_request :
10+ # ! paths:
11+ # ! - "python/**"
12+ jobs :
13+ coverage :
14+ name : Test
15+ runs-on : ubuntu-18.04
16+ steps :
17+ - uses : actions/checkout@v2
18+
19+ - name : Setup
20+ run : |
21+ set -ex
22+ sudo apt-get -qq update
23+ sudo apt-get install gcc python2.7 python2.7-dev
24+ # https://linuxize.com/post/how-to-install-python-3-8-on-ubuntu-18-04/
25+ sudo apt-get install software-properties-common
26+ sudo add-apt-repository -y ppa:deadsnakes/ppa
27+ sudo apt-get install python3.5 python3.5-dev
28+ sudo apt-get install python3.8 python3.8-dev
29+ pip3 install tox wheel
30+
31+ - name : Run tests
32+ run : make test-python
You can’t perform that action at this time.
0 commit comments