Skip to content

Change from_* functions #4

Change from_* functions

Change from_* functions #4

Workflow file for this run

name: Full tests
on:
pull_request:
branches: [main]
types: [synchronize, opened, reopened]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Pytest
run: |
pytest --cov=probeinterface --cov-report xml:./coverage.xml
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
file: ./coverage.xml