-
Notifications
You must be signed in to change notification settings - Fork 10
55 lines (44 loc) · 1.36 KB
/
Copy pathpython-package.yml
File metadata and controls
55 lines (44 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: testenv
auto-activate-base: false
- name: Install dependencies
run: |
# cyipopt commented out to test standard install without ipopt
conda install -y -c conda-forge scikit-learn pandas numpy statsmodels dcor sympy matplotlib flake8 pytest
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Install package
run: |
pip install -e .
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics
- name: Test with pytest
run: |
# Skip test_sudire.py since cyipopt is not installed in standard CI
pytest --ignore=src/direpack/test/test_sudire.py