Add ruff for formatting & linting #168
Workflow file for this run
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "ci-*" | |
| tags: | |
| - "**" | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| PY_COLORS: 1 | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # fetch all commits for version computation | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install dependencies | |
| run: python -m pip install -U build | |
| - name: Build | |
| run: python -m build | |
| - name: List distributions | |
| run: ls -lR dist | |
| - name: Save build artifacts | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: build | |
| path: dist | |
| - name: Install sdist | |
| run: python -m pip install dist/*.tar.gz | |
| - name: Test | |
| run: python -m unittest discover tests -v | |
| tests-py: | |
| name: Test | ${{ matrix.python }} | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build | |
| strategy: | |
| matrix: | |
| python: | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| - "pypy-3.10" | |
| - "pypy-3.11" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Restore build artifacts | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: build | |
| path: dist | |
| - name: Setup Python ${{ matrix.python }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install wheel | |
| run: python -m pip install dist/*.whl | |
| - name: Test | |
| run: python -m unittest discover tests -v | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.14 | |
| - name: Install dependencies | |
| run: python -m pip install ruff==0.14.8 | |
| - name: Test | |
| run: ruff check && ruff format --check | |
| publish: | |
| name: Publish to PyPI | |
| if: startsWith(github.ref, 'refs/tags') | |
| needs: | |
| - build | |
| - tests-py | |
| runs-on: ubuntu-latest | |
| environment: publish | |
| permissions: | |
| id-token: write # This permission is mandatory for trusted publishing | |
| steps: | |
| - name: Restore build artifacts | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: build | |
| path: dist | |
| - name: List distributions | |
| run: ls -lR dist | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| verbose: true | |
| print-hash: true |