Skip to content

feat: normalize replace & add from_parts #2226

feat: normalize replace & add from_parts

feat: normalize replace & add from_parts #2226

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
permissions: {}
env:
FORCE_COLOR: 1
jobs:
lint:
name: nox -s lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
name: Install Python
with:
python-version: "3.10"
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Build
run: pipx run build
- name: Build
run: pipx run twine check --strict ./dist/*
- name: Archive files
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: dist
path: dist