Skip to content

Commit

Permalink
Up
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Schaffranek committed Sep 20, 2020
1 parent 221051e commit 300bac3
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 69 deletions.
130 changes: 65 additions & 65 deletions .github/workflows/ci.yml → .github/workflows/ci-testing.yml
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
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ help:
@echo " * code-pep8 - Auto format the code for pep8."
@echo " * deps-install - Install dependencies (see requirements.txt)."
@echo " * deps-dev-install - Install dev. dependencies (see requirements-dev.txt)."
@echo " * deps-test-install - Install test dependencies (see requirements-test.txt)."

install:
@$(PYTHON) setup.py install
Expand Down Expand Up @@ -76,6 +75,3 @@ deps-install:

deps-dev-install:
@$(PIP) install -r requirements-dev.txt

deps-test-install:
@$(PIP) install -r requirements-test.txt

0 comments on commit 300bac3

Please sign in to comment.