Switch attribute name from PEP658 'data-dist-info-metadata' to PEP714 'data-core-metadata' #102
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint code | |
run: | | |
pipx run nox -s check_code | |
- name: Check format | |
run: | | |
pipx run nox -s check_format | |
- name: Type check | |
run: | | |
pipx run nox -s check_types | |
- name: Build docs | |
run: | | |
pipx run nox -s docs | |
- name: Build wheel | |
run: | | |
pipx run nox -s build | |
tests: | |
name: Test Python ${{ matrix.python_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
cache: "pip" | |
cache-dependency-path: "pyproject.toml" | |
- name: Test | |
run: | | |
pipx run nox -s coverage --python ${{ matrix.python_version }} |