Skip to content

Connect lending and catalogue domains over Redis broker #10

Connect lending and catalogue domains over Redis broker

Connect lending and catalogue domains over Redis broker #10

Workflow file for this run

# This workflow will install Python dependencies, run tests, and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry config virtualenvs.create false
poetry install --with dev,test --all-extras
- name: Run Ruff
run: ruff check --output-format=github .
- name: Test with pytest
run: |
pytest tests/lending/ tests/catalogue/
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}