Skip to content

[Snyk] Security upgrade @openapitools/openapi-generator-cli from 2.17.0 to 2.23.2 #18

[Snyk] Security upgrade @openapitools/openapi-generator-cli from 2.17.0 to 2.23.2

[Snyk] Security upgrade @openapitools/openapi-generator-cli from 2.17.0 to 2.23.2 #18

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "pyproject.toml uv.lock"
- name: Install dependencies
run: uv sync --all-groups
- name: Run tests with pytest
run: uv run pytest --cov=Monei --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false
- name: Minimize uv cache
run: uv cache prune --ci