File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : black
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ black :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - name : Black Code Formatter
11
+ uses : lgeiger/black-action@v1.0.1
12
+ with :
13
+ args : " . --check"
Original file line number Diff line number Diff line change @@ -13,10 +13,15 @@ matrix:
13
13
- EXTRATESTERS=""
14
14
- ARGS=""
15
15
- python : 3.7
16
+ env :
17
+ - COVERAGE=true
18
+ - EXTRATESTERS=""
19
+ - ARGS=""
20
+ - python : 3.8
16
21
env :
17
22
- COVERAGE=true
18
23
- EXTRATESTERS="seaborn"
19
- - ARGS="--pep8 -- mpl"
24
+ - ARGS="--mpl"
20
25
21
26
before_install :
22
27
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
@@ -29,7 +34,7 @@ before_install:
29
34
install :
30
35
- conda create --yes -n test python=$TRAVIS_PYTHON_VERSION numpy matplotlib docopt requests pyyaml
31
36
- source activate test
32
- - conda install --yes --channel=conda-forge pytest-mpl pytest-cov pytest-pep8 ${EXTRATESTERS}
37
+ - conda install --yes --channel=conda-forge pytest-mpl pytest-cov ${EXTRATESTERS}
33
38
- if [ ${COVERAGE} = true ]; then conda install scipy --yes; fi
34
39
- pip install codecov
35
40
- pip install .
You can’t perform that action at this time.
0 commit comments