diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.md b/.github/workflows/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 8b137891..00000000 --- a/.github/workflows/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/.github/workflows/ISSUE_TEMPLATE/pylint.yml b/.github/workflows/ISSUE_TEMPLATE/pylint.yml deleted file mode 100644 index faa6e253..00000000 --- a/.github/workflows/ISSUE_TEMPLATE/pylint.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: PyLint - -on: [push, pull_request] - -jobs: - PEP8: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: 3.9.2 - - - name: Install Python lint libraries - run: | - pip install autopep8 autoflake - - name: Check for showstoppers - run: | - autopep8 --verbose --in-place --recursive --aggressive --aggressive . *.py - - name: Remove unused imports and variables - run: | - autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports . - - # commit changes - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: 'pylint: auto fixes' - commit_options: '--no-verify --signoff' - repository: . - commit_user_name: Zora24 - commit_user_email: liualvinas1212@gmail.com - commit_author: Zora24 diff --git a/.github/workflows/ISSUE_TEMPLATE/python-app.yml b/.github/workflows/ISSUE_TEMPLATE/python-app.yml deleted file mode 100644 index 059a4e3c..00000000 --- a/.github/workflows/ISSUE_TEMPLATE/python-app.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: FailCheck - -on: [push, pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - max-parallel: 5 - matrix: - python-version: [3.9.2] - - steps: - - uses: actions/checkout@v1 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - sudo apt-get install libpq-dev - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install flake8 flake8-print flake8-quotes - - name: Check for showstoppers - run: | - flake8 . --count --select=E999 --show-source --statistics - shellcheck: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: Check for install script errors - uses: ludeeus/action-shellcheck@0.1.0 diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml deleted file mode 100644 index faa6e253..00000000 --- a/.github/workflows/pylint.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: PyLint - -on: [push, pull_request] - -jobs: - PEP8: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: 3.9.2 - - - name: Install Python lint libraries - run: | - pip install autopep8 autoflake - - name: Check for showstoppers - run: | - autopep8 --verbose --in-place --recursive --aggressive --aggressive . *.py - - name: Remove unused imports and variables - run: | - autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports . - - # commit changes - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: 'pylint: auto fixes' - commit_options: '--no-verify --signoff' - repository: . - commit_user_name: Zora24 - commit_user_email: liualvinas1212@gmail.com - commit_author: Zora24 diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml deleted file mode 100644 index 059a4e3c..00000000 --- a/.github/workflows/python-app.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: FailCheck - -on: [push, pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - max-parallel: 5 - matrix: - python-version: [3.9.2] - - steps: - - uses: actions/checkout@v1 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - sudo apt-get install libpq-dev - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install flake8 flake8-print flake8-quotes - - name: Check for showstoppers - run: | - flake8 . --count --select=E999 --show-source --statistics - shellcheck: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: Check for install script errors - uses: ludeeus/action-shellcheck@0.1.0