Skip to content

Update numpy to 2.0.1 #136

Update numpy to 2.0.1

Update numpy to 2.0.1 #136

Workflow file for this run

name: coverage
on:
push:
pull_request:
branches:
- master
- develop
jobs:
codecov:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [ 3.7 ]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
CARTESIO_DISABLE_JIT_COMPILE: True
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install -r requirements.txt
pip install coverage
- name: Generate coverage report
run: |
coverage run -m unittest discover -s tests
coverage xml --include "cartesio/*"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-unittests
fail_ci_if_error: true
env_vars: OS, PYTHON, CARTESIO_DISABLE_JIT_COMPILE