Skip to content

Commit 39f2125

Browse files
committed
STY: whitespace
1 parent c4dd40a commit 39f2125

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,23 @@ jobs:
5252
python setup.py develop
5353
cd ../pysatNASA
5454
pip install .
55+
5556
- name: Install NEP29 dependencies
5657
if: ${{ matrix.test_config == 'NEP29'}}
5758
run: |
5859
pip install numpy==${{ matrix.numpy_ver }}
5960
pip install --upgrade-strategy only-if-needed .[test]
61+
6062
- name: Install standard dependencies
6163
if: ${{ matrix.test_config == 'latest'}}
6264
run: |
6365
pip install .[test]
66+
6467
- name: Set up pysat
6568
run: |
6669
mkdir pysatData
6770
python -c "import pysat; pysat.params['data_dirs'] = 'pysatData'"
71+
6872
- name: Test PEP8 compliance
6973
run: flake8 . --count --select=D,E,F,H,W --show-source --statistics
7074

@@ -82,6 +86,7 @@ jobs:
8286
run: |
8387
curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz
8488
./coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }}
89+
8590
- name: Coveralls Parallel (Windows)
8691
if: startsWith(matrix.os, 'windows')
8792
env:
@@ -90,13 +95,15 @@ jobs:
9095
run: |
9196
curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe
9297
./coveralls.exe report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }}
98+
9399
- name: Publish results to coveralls (MacOS)
94100
if: startsWith(matrix.os, 'macos')
95101
env:
96102
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
97103
COVERALLS_PARALLEL: true
98104
run: |
99105
coveralls --rcfile=pyproject.toml --service=github
106+
100107
finish:
101108
name: Finish Coverage Analysis
102109
needs: build

0 commit comments

Comments
 (0)