diff --git a/.github/actions/install-colint/action.yaml b/.github/actions/install-colint/action.yaml new file mode 100644 index 0000000..6a9d9f5 --- /dev/null +++ b/.github/actions/install-colint/action.yaml @@ -0,0 +1,16 @@ +runs: + using: 'composite' + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10.12' + + - name: Install colint from github repository + shell: bash + run: | + pip install --upgrade pip + pip install git+https://github.com/secomind/colint.git diff --git a/.github/workflows/self_lint.yaml b/.github/workflows/self_lint.yaml new file mode 100644 index 0000000..7dadb57 --- /dev/null +++ b/.github/workflows/self_lint.yaml @@ -0,0 +1,74 @@ +name: Cobra Lint Checks + +on: [pull_request, push] + +jobs: + sort_libraries: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Install Colint + uses: ./.github/actions/install-colint + + - name: Run Sort Libraries Check + run: | + colint sort-libraries ./ --check + + code_format: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Install Colint + uses: ./.github/actions/install-colint + + - name: Run Code Format Check + run: | + colint code-format ./ --check + + grammar_check: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Install Colint + uses: ./.github/actions/install-colint + + - name: Run Grammar Check + run: | + colint grammar-check ./ --check + + newline_fix: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Install Colint + uses: ./.github/actions/install-colint + + - name: Run Newline Fix Check + run: | + colint newline-fix ./ --check + + clean_jupyter: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Install Colint + uses: ./.github/actions/install-colint + + - name: Check Jupyter Notebooks Cleanliness + run: | + colint clean-jupyter ./ --check