Skip to content

fixup! fixup! [ADD] otools-submodule update #243

fixup! fixup! [ADD] otools-submodule update

fixup! fixup! [ADD] otools-submodule update #243

Workflow file for this run

name: tests
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[test]
- name: Run tests
run: coverage run --source=odoo_tools -m pytest -v tests && coverage report -m