Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
pipeline: authenticate at coveralls.io via GITHUB_TOKEN instead of CO…
Browse files Browse the repository at this point in the history
…VERALLS_REPO_TOKEN to no longer require manual configuration of secret

fphammerle/ical2vdir@26ccafb
  • Loading branch information
fphammerle committed Mar 27, 2021
1 parent a2a4874 commit 873b5da
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,12 @@ jobs:
# > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
- run: pipenv run pylint --disable=parse-error tests/*
- run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
# >=1.9.0 to detect branch name
# https://github.com/coveralls-clients/coveralls-python/pull/207
# https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
# 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
- run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
# https://github.com/coverallsapp/github-action/issues/30
# https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
# >=2.1.0 to support GITHUB_TOKEN
# COVERALLS_REPO_TOKEN required manual configuration of secret
# https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
- run: pip install 'coveralls>=2.1.0,<4'
- run: coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
COVERALLS_SERVICE_NAME: github

0 comments on commit 873b5da

Please sign in to comment.