File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -56,34 +56,28 @@ jobs:
56
56
uses : actions/checkout@v1
57
57
58
58
- name : Setup conda
59
- env :
60
- PATH : " /usr/share/miniconda/bin:$PATH"
61
59
run : |
62
- echo $PATH # temp
60
+ export PATH="/usr/share/miniconda/bin: $PATH"
63
61
conda config --set always_yes yes --set changeps1 no
64
62
conda update -q conda
65
63
66
-
67
64
- name : Install dependencies
68
- env :
69
- PATH : " /usr/share/miniconda/bin:$PATH"
70
65
run : |
66
+ export PATH="/usr/share/miniconda/bin:$PATH"
71
67
conda create -n testenv --yes -c conda-forge pip python=${{ matrix.python }} numpy=${{ matrix.numpy }} pandas=${{ matrix.pandas }} scipy=${{ matrix.scipy }} libgfortran=${{ matrix.libgfortran }}
72
68
source activate testenv
73
69
pip install -e .[dev]
74
70
shell : bash
75
71
76
72
- name : Linting
77
- env :
78
- PATH : " /usr/share/miniconda/bin:$PATH"
79
73
run : |
74
+ export PATH="/usr/share/miniconda/bin:$PATH"
80
75
source activate testenv
81
76
flake8 .
82
77
83
78
- name : Tests
84
- env :
85
- PATH : " /usr/share/miniconda/bin:$PATH"
86
79
run : |
80
+ export PATH="/usr/share/miniconda/bin:$PATH"
87
81
source activate testenv
88
82
nosetests
89
83
source deactivate
You can’t perform that action at this time.
0 commit comments