Skip to content

Commit

Permalink
🎉 Refactor BasicTS. (#16)
Browse files Browse the repository at this point in the history
* 🎉 Refactor BasicTS.

* fix confict
  • Loading branch information
zezhishao authored Sep 12, 2022
1 parent 84e43f9 commit c307502
Show file tree
Hide file tree
Showing 341 changed files with 13,397 additions and 16,163 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pylint

env:
FAIL_UNDER: "9.0"

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
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
pip install coverage
- name: Analysing the code with pylint
run: |
pylint --fail-under=${FAIL_UNDER} basicts scripts
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


# dir
__pycache__/
.vscode/
Expand Down
Loading

0 comments on commit c307502

Please sign in to comment.