summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2020-11-19 11:34:27 +0100
committerGitHub <noreply@github.com>2020-11-19 11:34:27 +0100
commit58cd6273365fd9f66951b7c51f7c5ac111700c4f (patch)
treec0c60a1f24f934f92803bcc26569e7e801c2a8c7 /.github
parent343c6d0a9eaf3f8f2f2df015f4e416035bd7ae22 (diff)
downloadzope-browser-58cd6273365fd9f66951b7c51f7c5ac111700c4f.tar.gz
Update to current pure-python template. (#12)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index c4df220..fd5e8d1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -1,3 +1,5 @@
+# Generated from:
+# https://github.com/zopefoundation/meta/tree/master/config/pure-python
name: tests
on:
@@ -42,11 +44,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install tox coveralls coverage-python-version
+ pip install tox
- name: Test
run: tox -e ${{ matrix.config[1] }}
- name: Coverage
if: matrix.config[1] == 'coverage'
- run: coveralls
+ run: |
+ pip install coveralls coverage-python-version
+ coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}