Skip to content

Fixing cross validation in parallel causing the run to freeze #49

Fixing cross validation in parallel causing the run to freeze

Fixing cross validation in parallel causing the run to freeze #49

Workflow file for this run

# This workflow will run tox on push and PRs to master
name: tox
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install GPErks[dev]
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Run tox
run: |
tox