Skip to content

Commit 3953556

Browse files
authored
Update pythonpackage.yml
1 parent e126e0e commit 3953556

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,26 @@ jobs:
1616
uses: actions/setup-python@v1
1717
with:
1818
python-version: ${{ matrix.python-version }}
19+
1920
- name: Install dependencies
2021
run: |
2122
python -m pip install --upgrade pip
2223
pip install -r requirements.txt
24+
2325
- name: Lint with flake8
2426
run: |
2527
pip install flake8
2628
# stop the build if there are Python syntax errors or undefined names
2729
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2830
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
2931
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
32+
3033
- name: Test with coverage and coveralls
3134
run: |
3235
- pip install coveralls
3336
- coverage run --source Hologram -m pytest
34-
- coveralls
37+
38+
- name: Coveralls
39+
uses: coverallsapp/github-action@master
40+
with:
41+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)