feat: add support for tokens and system keyring #411
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: test | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Python | |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| with: | |
| python-version: 3.13 | |
| - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| tox_env: | |
| - py39 | |
| - py310 | |
| - py311 | |
| - py312 | |
| - py313 | |
| - pypy3 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Fedora Tox with ${{ matrix.tox_env }} | |
| uses: fedora-python/tox-github-action@807f27871410c7391018dc9a245c8cffdced15e9 # v41.0 | |
| with: | |
| tox_env: ${{ matrix.tox_env }} | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| with: | |
| cache: pip | |
| cache-dependency-path: | | |
| requirements-dev.txt | |
| setup.py | |
| deploy: | |
| name: Build deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| - uses: casperdcl/deploy-pypi@928e3123266d588b46c017228f9a9d4c13ad4c93 # v2.5.0 | |
| with: | |
| password: ${{ secrets.PYPI_TOKEN }} | |
| build: true | |
| # only upload if a tag is pushed (otherwise just build & check) | |
| upload: ${{ github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') }} |