Skip to content

Bump mkdocs-material from 9.5.48 to 9.5.49 (#109) #53

Bump mkdocs-material from 9.5.48 to 9.5.49 (#109)

Bump mkdocs-material from 9.5.48 to 9.5.49 (#109) #53

Workflow file for this run

name: Unit tests
on: [push]
jobs:
unit_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Test with pytest
run: pytest -v --cov-config=pyproject.toml --cov=bring_api