Skip to content

version

version #60

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
# Disabling Windows tests as it's known to not work:
# https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735
# - windows-latest
architecture: [x64]
python-version: ['3.10']
fail-fast: false
name: Test ${{ matrix.os }} ${{ matrix.architecture }}
Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Run test
run: python -m tox -- --cov=diffeqpy -s
env:
TOXENV: py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
name: codecov-umbrella