Skip to content

Bump pydis-core from 9.6.0 to 10.0.0 #190

Bump pydis-core from 9.6.0 to 10.0.0

Bump pydis-core from 9.6.0 to 10.0.0 #190

Workflow file for this run

name: Lint Python code
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lint code"
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Python Dependencies
uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1
with:
# Set dev=true to install flake8 extensions, which are dev dependencies
dev: true
python_version: '3.10'
- name: Lint code with Flake8
run: poetry run flake8 . --count --show-source --statistics