Add py.typed file to compliant with PEP 561 #107
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: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- run: | | |
python -m pip install -U pip | |
python -m pip install --use-pep517 '.[dev]' | |
- run: make test | |
- uses: actions/upload-pages-artifact@v1 | |
if: github.ref_name == 'main' && matrix.python-version == '3.11' | |
with: | |
path: htmlcov | |
# deploy: | |
# if: github.ref_name == 'main' | |
# needs: test | |
# permissions: | |
# pages: write | |
# id-token: write | |
# environment: | |
# name: github-pages | |
# url: ${{ steps.deployment.outputs.page_url }} | |
# runs-on: ubuntu-latest | |
# steps: | |
# - id: deployment | |
# uses: actions/deploy-pages@v2 |