Skip to content

Add Example for Data Imputation using Julearn #1444

Add Example for Data Imputation using Julearn

Add Example for Data Imputation using Julearn #1444

Workflow file for this run

name: Run Tests
on:
push:
paths:
- 'julearn/**'
- '.github/workflows/**'
pull_request:
paths:
- 'julearn/**'
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install tox tox-gh-actions
- name: Test with tox
run: |
tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
flags: julearn
if: success() && matrix.python-version == 3.10