Skip to content

avoid error on action #206

avoid error on action

avoid error on action #206

Workflow file for this run

name: Testing
on:
push:
branches:
- main
- dev
jobs:
run:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
os: [ubuntu-latest, macos-13, windows-latest]
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow --tags
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tests dependencies
run: |
python -m pip install -U pip
pip install . --no-cache-dir
pip install -r tests/requirements-tests.txt --no-cache-dir
- name: Run tests.
run: pytest --cov=src/vame --cov-report=xml --cov-report=term-missing -v
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}