Fix CI/CD workflow to use correct Python versions and PyPI URL #440
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: Continuous Integration and Deployment | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # Run on all pull requests regardless of target branch | |
| release: | |
| types: [created] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| python-version: ["3.11", "3.12", "3.13"] | |
| defaults: | |
| run: | |
| shell: bash | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # Checkout repo | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Install uv and set Python version | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ matrix.python-version }} | |
| # Sync dependencies | |
| - name: Sync dependencies | |
| run: uv sync --python ${{ matrix.python-version }} | |
| # Run tests | |
| - name: Run tests | |
| run: uv run --frozen --python ${{ matrix.python-version }} pytest | |
| # Code coverage to codecov.io | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: tests/coverage.xml | |
| fail_ci_if_error: false | |
| verbose: true | |
| # Publishes to PyPi if tests are passed and release is created | |
| publish: | |
| if: github.event_name == 'release' && github.event.action == 'created' | |
| needs: test | |
| name: Upload release to PyPI | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/project/ispypsa/ | |
| permissions: | |
| id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
| steps: | |
| # Checkout repo | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Install uv | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| # Sync dependencies | |
| - name: Sync dependencies | |
| run: uv sync | |
| # Build | |
| - name: Build | |
| run: uv build | |
| # Publish to PyPI | |
| - name: Publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |