Leverage uv
#197
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: CI/CD | |
on: | |
merge_group: | |
push: | |
branches: | |
- master | |
tags: | |
- >- | |
[0-9]+.[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- master | |
- >- | |
[0-9].[0-9]+.[0-9]+ | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
build: | |
name: Build distribution 📦 | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Build distribution 📦 | |
run: uv build | |
- name: Check distribution 📦 | |
run: uvx twine check --strict dist/* | |
- name: Upload distribution 📦 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
test: | |
name: Test Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- 3.8 | |
- 3.9 | |
- >- | |
3.10 | |
- 3.11 | |
- 3.12 | |
- 3.13 | |
fail-fast: false | |
env: | |
UV_FROZEN: 1 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run pre-commit hooks | |
run: | | |
uv run make pre-commit | |
- name: Run unittests | |
env: | |
COLOR: 'yes' | |
run: | | |
uv run make mototest | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == '3.11' | |
uses: codecov/codecov-action@v5.1.2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
files: ./coverage.xml | |
flags: unittests # optional | |
name: codecov-umbrella # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
pypi-publish: | |
name: Publish Python 🐍 distribution 📦 to PyPI | |
if: github.ref_type == 'tag' # only publish on tag pushes | |
needs: | |
- build | |
- test | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/project/aiobotocore/${{ github.ref_name }} | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
timeout-minutes: 5 | |
steps: | |
- name: Download distribution 📦 | |
uses: actions/download-artifact@v4 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
- name: Check if distribution 📦 names match git tag | |
run: | | |
test -f "dist/aiobotocore-${{ github.ref_name }}.tar.gz" | |
test -f "dist/aiobotocore-${{ github.ref_name }}-py3-none-any.whl" | |
- name: Publish distribution 📦 to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |