fix: Add missing program termination logic when the runtime dependenc… #13
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
# 用來檢查專案中的潛在問題的 GitHub Actions 工作流程(workflow)定義檔 | |
# | |
# 編輯參考: | |
# | |
# * Workflow syntax for GitHub Actions - GitHub Docs | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
# | |
# Copyright 2021 林博仁(Buo-ren, Lin) <[email protected]> | |
# SPDX-License-Identifier: CC-BY-SA-4.0 | |
name: 檢查專案中的潛在問題 | |
on: | |
- push | |
jobs: | |
check-using-precommit: | |
name: 使用 pre-commit 檢查專案中的潛在問題 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: 自版控庫取出內容 | |
uses: actions/checkout@v2 | |
- name: 安裝 pre-commit | |
run: pip3 install pre-commit | |
- name: 使用 pre-commit 檢查專案中的所有檔案 | |
run: pre-commit run --all-files --color always | |
- name: 傳送持續整合結果告警到 Telegram 頻道 | |
uses: yanzay/[email protected] | |
if: always() | |
with: | |
chat: '@the_common_ci_results' | |
token: ${{ secrets.telegram_bot_api_token_ci }} | |
status: ${{ job.status }} |