[Logging] fix double callback call for exception details #1229
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github-Action-CI | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
lint: | |
uses: Drakkar-Software/.github/.github/workflows/python3_lint_workflow.yml@master | |
with: | |
project_main_package: octobot_commons | |
use_black: true | |
tests: | |
needs: lint | |
uses: Drakkar-Software/.github/.github/workflows/python3_tests_workflow.yml@master | |
secrets: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
publish: | |
needs: tests | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
uses: Drakkar-Software/.github/.github/workflows/python3_sdist_workflow.yml@master | |
secrets: | |
PYPI_OFFICIAL_UPLOAD_URL: ${{ secrets.PYPI_OFFICIAL_UPLOAD_URL }} | |
PYPI_USERNAME: __token__ | |
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
notify: | |
if: ${{ failure() }} | |
needs: | |
- lint | |
- tests | |
- publish | |
uses: Drakkar-Software/.github/.github/workflows/failure_notify_workflow.yml@master | |
secrets: | |
DISCORD_GITHUB_WEBHOOK: ${{ secrets.DISCORD_GITHUB_WEBHOOK }} |