Skip to content

Add a comment as to why Metadata.name isn't normalized (#842) #1464

Add a comment as to why Metadata.name isn't normalized (#842)

Add a comment as to why Metadata.name isn't normalized (#842) #1464

Workflow file for this run

name: Linting
on:
pull_request:
paths:
- ".github/workflows/lint.yml"
- ".pre-commit-config.yaml"
- "**.py"
push:
paths:
- ".github/workflows/lint.yml"
- ".pre-commit-config.yaml"
- "**.py"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
jobs:
lint:
name: nox -s lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
name: Install Python
with:
python-version: "3.9"
cache: "pip"
- name: Run `nox -s lint`
run: pipx run nox --error-on-missing-interpreters -s lint -- --show-diff-on-failure
build:
name: Build sdist and wheel
runs-on: ubuntu-latest
# Linting verifies that the project is in an acceptable state to create files
# for releasing.
# And this action should be run whenever a release is ready to go public as
# the version number will be changed by editing __init__.py.
needs: lint
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Build
run: pipx run build
- name: Archive files
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: dist
path: dist