Merge pull request #150 from himoto/fix-ci #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-14 | |
# Disabling Windows tests as it's known to not work: | |
# https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735 | |
# - windows-latest | |
python-version: ['3.8', '3.12'] | |
fail-fast: false | |
name: Test ${{ matrix.os }} ${{ matrix.architecture }} | |
Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
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: Install Julia using jill | |
run: | | |
python -m pip install --upgrade jill | |
python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)" | |
- 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 |