Skip to content

Overhaul of RidgeRegression2FoldCV #1439

Overhaul of RidgeRegression2FoldCV

Overhaul of RidgeRegression2FoldCV #1439

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
python-version: ['3.8', '3.9', '3.10', '3.11']
include:
- os: macos-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.10'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- name: run Python tests
run: tox -e tests
- uses: codecov/codecov-action@v3
with:
files: ./tests/coverage.xml