summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2021-01-18 09:39:25 +0100
committerGitHub <noreply@github.com>2021-01-18 09:39:25 +0100
commitbd29a2630e2f1d2f61bd1837cbfeb202b89323dc (patch)
treeeffcdbcec7dd1cf1644820f198057457572f0d21 /.github
parent9ab6f6a57c3844d165b457cbe49e701baf584a41 (diff)
downloadzope-browser-bd29a2630e2f1d2f61bd1837cbfeb202b89323dc.tar.gz
Update to Coveralls >= 3 (#15)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 1079b83..a535e16 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -32,15 +32,16 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.config[0] }}
- name: Pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
- key: ${{ runner.os }}-pip-${{ hashFiles('setup.*', 'tox.ini') }}
+ key: ${{ runner.os }}-pip-${{ matrix.config[0] }}-${{ hashFiles('setup.*', 'tox.ini') }}
restore-keys: |
+ ${{ runner.os }}-pip-${{ matrix.config[0] }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
@@ -52,6 +53,6 @@ jobs:
if: matrix.config[1] == 'coverage'
run: |
pip install coveralls coverage-python-version
- coveralls
+ coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}