Add riscv64 as a supported manylinux architecture #1235
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: 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 | |
jobs: | |
lint: | |
name: nox -s lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 | |
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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Build | |
run: pipx run build | |
- name: Archive files | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: dist | |
path: dist |