⬆️ Bump certifi from 2023.7.22 to 2024.7.4 #627
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: Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
ANSICON: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
steps: | |
- name: "🗃 Cache" | |
if: success() || failure() | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache | |
.mypy_cache | |
.pytest_cache | |
.ruff_cache | |
key: ${{ runner.os }}-${{ matrix.python-version }}-check | |
- name: "📥 Checkout" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "✨ Install Poetry" | |
run: | | |
pipx install poetry | |
pipx inject poetry poetry-dynamic-versioning | |
- name: 🐍 Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: poetry | |
- name: "📥 Install the package" | |
run: make install | |
- name: "🪄 Linter: Ruff" | |
if: success() || failure() | |
run: make lint/ruff | |
env: | |
RUFF_FORMAT: "github" | |
- name: "🪄 Linter: mypy" | |
if: success() || failure() | |
run: make lint/mypy | |
- name: "🧪 Tests" | |
if: success() || failure() | |
run: make test | |
- name: "📤 Codecov" | |
if: success() || failure() | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
env_vars: PYTHON | |
name: Python ${{ matrix.python-version }} | |
files: coverage.xml | |
- name: "📦 Build and publish package: dry run" | |
if: success() || failure() | |
run: poetry publish --build --dry-run --ansi |