Skip to content

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 in the actions group #61

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 in the actions group

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 in the actions group #61

Workflow file for this run

name: Lint
on:
# Runs on pushes to test/ branches and main
push:
branches:
- 'main'
- 'test/**'
# Runs on all PRs
pull_request:
# Manual Dispatch
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint_python:
name: Lint Python Code
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint with Flake8
run: |
python3 -m venv .venv
. .venv/bin/activate
python3 -m pip install flake8 -c ./requirements.txt
flake8 --statistics .