Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 #23

build(deps): bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0

build(deps): bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 #23

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Setup Hatch
run: pipx install hatch
- name: Run static analysis
run: hatch fmt --check
- name: Run type checking
run: hatch run mypy src/django_whatsapp
tests:
name: Run tests on ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Setup Hatch
run: pipx install hatch
- name: Run tests
run: |
hatch test -i py=${{ matrix.python-version }} --cover