Build(deps): Bump pycryptodome from 3.22.0 to 3.23.0 #183
This file contains hidden or 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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Python: ${{ matrix.python-version }} | |
on ${{ matrix.os }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-22.04'] | |
python-version: [ | |
'3.9', | |
'3.12', | |
] | |
cratedb-version: ['nightly'] | |
env: | |
UV_PYTHON_DOWNLOADS: never | |
UV_SYSTEM_PYTHON: true | |
services: | |
cratedb: | |
image: crate/crate:nightly | |
ports: | |
- 4200:4200 | |
- 5432:5432 | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
cache-dependency-glob: | | |
pyproject.toml | |
cache-suffix: ${{ matrix.python-version }} | |
enable-cache: true | |
version: "latest" | |
- name: Set up project | |
run: | | |
uv pip install --editable='.[develop,test]' | |
- name: Run linters and software tests | |
run: | | |
poe check | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: true |