Skip to content

Commit a646356

Browse files
committed
Comment out coveralls
1 parent 494c97c commit a646356

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- name: Set Up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v3
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

@@ -31,7 +31,7 @@ jobs:
3131
echo "::set-output name=dir::$(pip cache dir)"
3232
3333
- name: pip cache
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: ${{ steps.pip-cache.outputs.dir }}
3737
key:
@@ -47,10 +47,10 @@ jobs:
4747
- name: tox
4848
env:
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50-
run: tox -e py,lint,coveralls,release
50+
run: tox -e py,lint,release # coveralls
5151

5252
- name: upload dist
53-
uses: actions/upload-artifact@v2
53+
uses: actions/upload-artifact@v3
5454
with:
5555
name: ${{ matrix.os }}_${{ matrix.python-version}}_dist
5656
path: dist
@@ -61,7 +61,7 @@ jobs:
6161
needs: [tox]
6262
steps:
6363
- name: Download dists for PyPI
64-
uses: actions/download-artifact@v2
64+
uses: actions/download-artifact@v3
6565
with:
6666
name: ubuntu-latest_3.8_dist
6767
path: dist

0 commit comments

Comments
 (0)