Skip to content

改善程式因例外狀況而致執行終止之問題。原程式碼會因切語上字或下字查不到的狀況發生時,程式會發生 Run Time Error 。 #13

改善程式因例外狀況而致執行終止之問題。原程式碼會因切語上字或下字查不到的狀況發生時,程式會發生 Run Time Error 。

改善程式因例外狀況而致執行終止之問題。原程式碼會因切語上字或下字查不到的狀況發生時,程式會發生 Run Time Error 。 #13

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')