Re-enabled and ran static checks.

This commit is contained in:
Relintai 2023-06-25 13:28:04 +02:00
parent bfed962f1f
commit 52144e7f36
3 changed files with 22 additions and 22 deletions

View File

@ -17,26 +17,26 @@ env:
jobs: jobs:
# static-checks: static-checks:
# name: '📊 Static checks' name: '📊 Static checks'
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - name: Checkout - name: Checkout
# uses: actions/checkout@f1d3225b5376a0791fdee5a0e8eac5289355e43a # pin@v2 uses: actions/checkout@f1d3225b5376a0791fdee5a0e8eac5289355e43a # pin@v2
# with: with:
# submodules: true submodules: true
# - name: Set up Python - name: Set up Python
# uses: actions/setup-python@0291cefc54fa79cd1986aee8fa5ecb89ad4defea # pin@v2 uses: actions/setup-python@0291cefc54fa79cd1986aee8fa5ecb89ad4defea # pin@v2
# with: with:
# python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
# - name: Bootstrap - name: Bootstrap
# run: | run: |
# set -eux set -eux
# python --version python --version
# pip install pre-commit pip install pre-commit
# - name: Pre-commit hooks check - name: Pre-commit hooks check
# run: | run: |
# pre-commit run --all-files --show-diff-on-failure pre-commit run --all-files --show-diff-on-failure
################################################################################# #################################################################################