Bump codecov/codecov-action from 4 to 5 #188
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
# Adapted from https://github.com/python-attrs/attrs/blob/main/.github/workflows/main.yml | |
--- | |
name: CI | |
on: | |
push: | |
branches: ["master"] | |
tags: | |
- "*" | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: | |
env: | |
COVERAGE_PYTHON_VERSION: "3.12" | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies" | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install --upgrade coverage[toml] tox tox-gh-actions | |
- name: "Run tox targets for ${{ matrix.python-version }}" | |
run: "python -m tox" | |
# use a latest Python version for code coverage | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: ${{ env.COVERAGE_PYTHON_VERSION }} | |
- name: "Generate coverage" | |
if: "${{ env.COVERAGE_PYTHON_VERSION == matrix.python-version }}" | |
run: | | |
set -xe | |
python -m pip install coverage[toml] | |
python -m coverage xml | |
- name: "Upload coverage to Codecov" | |
if: "${{ env.COVERAGE_PYTHON_VERSION == matrix.python-version }}" | |
uses: "codecov/codecov-action@v5" | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
package: | |
name: "Build, verify, and publish package" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: ${{ env.COVERAGE_PYTHON_VERSION }} | |
- name: "Install build, check-wheel-content, and twine" | |
run: "python -m pip install build twine check-wheel-contents" | |
- name: "Build package" | |
run: "python -m build --sdist --wheel ." | |
- name: "List result" | |
run: "ls -l dist" | |
- name: "Check wheel contents" | |
run: "check-wheel-contents dist/*.whl" | |
- name: "Check long_description" | |
run: "python -m twine check dist/*" | |
# Automatically publish to PyPI when tags are pushed | |
# Added to https://github.com/python-attrs/attrs/blob/main/.github/workflows/main.yml | |
- name: Publish distribution to PyPI | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
install-dev: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
name: "Verify dev env" | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: ${{ env.COVERAGE_PYTHON_VERSION }} | |
- name: "Install in dev mode" | |
run: "python -m pip install -e .[dev]" | |
- name: "Import package" | |
run: "python -c 'import flask_resty; print(flask_resty.__version__)'" |