Skip to content

Improve 4.2.0 Changelog and Remove advanced-menu from Registry #1466

Improve 4.2.0 Changelog and Remove advanced-menu from Registry

Improve 4.2.0 Changelog and Remove advanced-menu from Registry #1466

Workflow file for this run

name: Modmail Workflow

Check failure on line 1 in .github/workflows/lints.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lints.yml

Invalid workflow file

(Line: 31, Col: 7): Unexpected value 'cancel-in-progress', (Line: 35, Col: 7): Unexpected value 'cancel-in-progress'
on: [push, pull_request]
jobs:
code-style:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
name: Python ${{ matrix.python-version }} on ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv
pipenv install --dev --system
# to refresh: bandit -f json -o .bandit_baseline.json -r .
# - name: Bandit syntax check
# run: bandit -r . -b .bandit_baseline.json
- name: Pylint
run: pylint ./bot.py cogs/*.py core/*.py --exit-zero -r y
continue-on-error: true
cancel-in-progress: false
- name: Black
run: |
black . --diff --check
cancel-in-progress: false