Skip to content

ci: Use PyPI Trusted Publisher for publishing package #90

ci: Use PyPI Trusted Publisher for publishing package

ci: Use PyPI Trusted Publisher for publishing package #90

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip --quiet install --upgrade .[develop]
python -m pip list
- name: Lint with flake8
run: |
python -m flake8 .
- name: Lint with Black
run: |
black --check --diff --verbose .