-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jan Schaffranek
committed
Sep 20, 2020
1 parent
221051e
commit 300bac3
Showing
2 changed files
with
65 additions
and
69 deletions.
There are no files selected for viewing
130 changes: 65 additions & 65 deletions
130
.github/workflows/ci.yml → .github/workflows/ci-testing.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: check | ||
run: | | ||
python --version | ||
pip --version | ||
- name: install | ||
run: | | ||
pip install -r requirements-test.txt | ||
python setup.py develop | ||
- name: test | ||
run: | | ||
make test | ||
build-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Checking Versions | ||
run: | | ||
python3 --version | ||
pip3 --version | ||
- name: Installing | ||
run: | | ||
pip3 install setuptools | ||
pip3 install -r requirements-test.txt | ||
python3 setup.py develop --user | ||
- name: Testing | ||
run: | | ||
make test | ||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: check | ||
run: | | ||
python3 --version | ||
pip3 --version | ||
- name: install | ||
run: | | ||
pip3 install -r requirements-test.txt | ||
python3 setup.py develop | ||
- name: test | ||
run: | | ||
make test | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: check | ||
run: | | ||
python --version | ||
pip --version | ||
- name: install | ||
run: | | ||
pip install -r requirements-dev.txt | ||
python setup.py develop | ||
- name: test | ||
run: | | ||
make test | ||
build-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Checking Versions | ||
run: | | ||
python3 --version | ||
pip3 --version | ||
- name: Installing | ||
run: | | ||
pip3 install setuptools | ||
pip3 install -r requirements-dev.txt | ||
python3 setup.py develop --user | ||
- name: Testing | ||
run: | | ||
make test | ||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: check | ||
run: | | ||
python3 --version | ||
pip3 --version | ||
- name: install | ||
run: | | ||
pip3 install -r requirements-dev.txt | ||
python3 setup.py develop | ||
- name: test | ||
run: | | ||
make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters