Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/locale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
- name: Push locale to Crowdin
# CROWDIN_API_KEY needs to be set in GitHub repository settings
# - api key is for crowdin account: "SomberNight_CI_BOT"
# ref https://crowdin.com/settings#api-key
# scope:
# - Projects/"Source files & strings" - read and write
# - Projects/"Translations" - read and write
env:
crowdin_api_key: ${{ secrets.CROWDIN_API_KEY }}
run: ./contrib/locale/push_locale.py
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ jobs:
if: matrix.python == '3.10' && !matrix.debug
env:
# 'COVERALLS_REPO_TOKEN' needs to be set in the GitHub repository settings
# This is a "repo token", NOT a "Personal API Token"!
# ref https://coveralls.io/github/spesmilo/electrum/settings
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CI_NAME: github-actions
CI_BUILD_NUMBER: ${{ github.run_id }}
Expand All @@ -128,7 +130,7 @@ jobs:
# the repo token will be empty when pull requests from forks get opened
# so we won't upload on every pull request, but it will run again
# with the token once the PR gets merged.
run: if [ -n "$COVERALLS_REPO_TOKEN" ]; then coveralls; fi
run: if [ -n "$COVERALLS_REPO_TOKEN" ]; then coveralls; else echo "missing COVERALLS_REPO_TOKEN"; fi

# unittests using the ~same frozen dependencies that are used in the released binaries
# note: not using pinned pyqt here, due to "qml_gui" extra
Expand Down