Skip to content

Commit dceff6d

Browse files
authored
Create python-package.yml
1 parent cbe925a commit dceff6d

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Python package
5+
6+
on:
7+
push:
8+
branches: [ dev ]
9+
pull_request:
10+
branches: [ dev ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
python-version: [3.8, 3.9]
19+
requirements-cmd:
20+
- -r testing-requirements.txt -r oldest
21+
- -r testing-requirements.txt -r requirements.txt
22+
pytest-run-cmd:
23+
- pytest
24+
exclude:
25+
- python-version: 3.9
26+
requirements-cmd: -r testing-requirements.txt -r requirements.txt
27+
pytest-run-cmd: pytest
28+
include:
29+
- python-version: 3.9
30+
requirements-cmd: -r testing-requirements.txt -r coverage-requirements.txt -r requirements.txt
31+
pytest-run-cmd: |
32+
pytest --cov=generalizedtrees --cov-report xml
33+
codecov
34+
35+
steps:
36+
- uses: actions/checkout@v2
37+
- name: Set up Python ${{ matrix.python-version }}
38+
uses: actions/setup-python@v2
39+
with:
40+
python-version: ${{ matrix.python-version }}
41+
- name: Install dependencies
42+
run: |
43+
python -m pip install --upgrade pip
44+
python -m pip install flake8 pytest
45+
python -m pip install ${{ requirements-cmd }}
46+
- name: Lint with flake8
47+
run: |
48+
# stop the build if there are Python syntax errors or undefined names
49+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
50+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
51+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
52+
- name: Test with pytest
53+
run: |
54+
${{ pytest-run-cmd }}

0 commit comments

Comments
 (0)