Add missing InviteType and ReactionType #5021
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
push: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ '3.8', '3.x' ] | |
name: check ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up CPython ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
id: install-deps | |
run: | | |
python -m pip install --upgrade pip setuptools wheel ruff==0.12 requests "typing_extensions>=4.3,<5" | |
pip install -U -r requirements.txt | |
- name: Setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Run Pyright | |
uses: jakebailey/pyright-action@v1 | |
with: | |
version: '1.1.394' | |
warnings: false | |
no-comments: ${{ matrix.python-version != '3.x' }} | |
- name: Run ruff | |
if: ${{ always() && steps.install-deps.outcome == 'success' }} | |
run: | | |
ruff format --check discord examples |