Add py.typed file and fix mypy, improve pre-commit configuration #353
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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
version-changed: ${{ steps.version-metadata.outputs.changed }} | |
new-version: ${{ steps.version-metadata.outputs.newVersion }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install Python build | |
run: pip install build | |
- name: Build project | |
run: python -m build | |
- name: Upload package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifact | |
path: dist/* | |
- uses: Quantco/ui-actions/version-metadata@v1 | |
id: version-metadata | |
with: | |
file: ./pyproject.toml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version-extraction-override: 'regex:version = "(.*)"' | |
release: | |
if: github.event_name == 'push' && github.ref_name == 'main' && needs.build.outputs.version-changed == 'true' | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: artifact | |
path: dist | |
- name: Publish package on TestPyPi | |
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_TOKEN }} | |
repository-url: https://test.pypi.org/legacy/ | |
- name: Publish package on PyPi | |
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
- uses: actions/checkout@v4 | |
- name: Push v${{ needs.build.outputs.new-version }} tag | |
run: | | |
git tag v${{ needs.build.outputs.new-version }} | |
git push origin v${{ needs.build.outputs.new-version }} | |
- name: Create release | |
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 | |
with: | |
generate_release_notes: true | |
tag_name: v${{ needs.build.outputs.new-version }} | |
draft: true |