Skip to content

Commit 300bac3

Browse files
author
Jan Schaffranek
committed
Up
1 parent 221051e commit 300bac3

File tree

2 files changed

+65
-69
lines changed

2 files changed

+65
-69
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
1-
name: CI
2-
3-
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request:
8-
branches:
9-
- master
10-
11-
jobs:
12-
build-windows:
13-
runs-on: windows-latest
14-
steps:
15-
- uses: actions/checkout@v2
16-
with:
17-
submodules: true
18-
- name: check
19-
run: |
20-
python --version
21-
pip --version
22-
- name: install
23-
run: |
24-
pip install -r requirements-test.txt
25-
python setup.py develop
26-
- name: test
27-
run: |
28-
make test
29-
30-
build-linux:
31-
runs-on: ubuntu-20.04
32-
steps:
33-
- uses: actions/checkout@v2
34-
with:
35-
submodules: true
36-
- name: Checking Versions
37-
run: |
38-
python3 --version
39-
pip3 --version
40-
- name: Installing
41-
run: |
42-
pip3 install setuptools
43-
pip3 install -r requirements-test.txt
44-
python3 setup.py develop --user
45-
- name: Testing
46-
run: |
47-
make test
48-
49-
build-macos:
50-
runs-on: macos-latest
51-
steps:
52-
- uses: actions/checkout@v2
53-
with:
54-
submodules: true
55-
- name: check
56-
run: |
57-
python3 --version
58-
pip3 --version
59-
- name: install
60-
run: |
61-
pip3 install -r requirements-test.txt
62-
python3 setup.py develop
63-
- name: test
64-
run: |
65-
make test
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build-windows:
13+
runs-on: windows-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
submodules: true
18+
- name: check
19+
run: |
20+
python --version
21+
pip --version
22+
- name: install
23+
run: |
24+
pip install -r requirements-dev.txt
25+
python setup.py develop
26+
- name: test
27+
run: |
28+
make test
29+
30+
build-linux:
31+
runs-on: ubuntu-20.04
32+
steps:
33+
- uses: actions/checkout@v2
34+
with:
35+
submodules: true
36+
- name: Checking Versions
37+
run: |
38+
python3 --version
39+
pip3 --version
40+
- name: Installing
41+
run: |
42+
pip3 install setuptools
43+
pip3 install -r requirements-dev.txt
44+
python3 setup.py develop --user
45+
- name: Testing
46+
run: |
47+
make test
48+
49+
build-macos:
50+
runs-on: macos-latest
51+
steps:
52+
- uses: actions/checkout@v2
53+
with:
54+
submodules: true
55+
- name: check
56+
run: |
57+
python3 --version
58+
pip3 --version
59+
- name: install
60+
run: |
61+
pip3 install -r requirements-dev.txt
62+
python3 setup.py develop
63+
- name: test
64+
run: |
65+
make test

Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ help:
3434
@echo " * code-pep8 - Auto format the code for pep8."
3535
@echo " * deps-install - Install dependencies (see requirements.txt)."
3636
@echo " * deps-dev-install - Install dev. dependencies (see requirements-dev.txt)."
37-
@echo " * deps-test-install - Install test dependencies (see requirements-test.txt)."
3837

3938
install:
4039
@$(PYTHON) setup.py install
@@ -76,6 +75,3 @@ deps-install:
7675

7776
deps-dev-install:
7877
@$(PIP) install -r requirements-dev.txt
79-
80-
deps-test-install:
81-
@$(PIP) install -r requirements-test.txt

0 commit comments

Comments
 (0)