Skip to content

Bump dev dependencies #449

Bump dev dependencies

Bump dev dependencies #449

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v9.0.0
- run: uv python install ${{ matrix.python-version }}
- run: brew install automake
if: matrix.os == 'macos-latest'
- run: uv sync --locked --all-extras --python ${{ matrix.python-version }}
- name: Lint
run: |
uv run --locked --all-extras --python ${{ matrix.python-version }} ruff check .
uv run --locked --all-extras --python ${{ matrix.python-version }} ruff format --check .
uv run --locked --all-extras --python ${{ matrix.python-version }} ty check
- name: Run test
run: uv run --locked --all-extras --python ${{ matrix.python-version }} pytest -s --cov=ecies tests --cov-report xml
- run: ./scripts/ci.sh
- uses: codecov/codecov-action@v7
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
with:
token: ${{ secrets.CODECOV_TOKEN }}
- run: uv build