Skip to content

revive ci

revive ci #6

Workflow file for this run

name: test-all
on:
push:
branches:
- main
pull_request:
jobs:
linux-macos:
name: test-all ${{ matrix.os }} ${{ matrix.python-version }} ${{ matrix.VERBOSE }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
# 3.12 has no pandas wheel, takes a long time to build
EXTRA: [false] # used to force includes to get included
include:
- python-version: 3.7
os: ubuntu-latest
# make sure that the most verbose level is not crashy
VERBOSE: verbose # does work
PARAMSURVEY_VERBOSE: 3
PYTEST_STDERR_VISIBLE: -s
EXTRA: true
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install setuptools on python 3.12+
if: ${{ matrix.python-version >= '3.12' }}
run: |
pip install setuptools
- name: 'Install dependencies'
run: |
python -m pip install --upgrade pip
pip install . .[test]
- name: 'Install ray if needed'
if: ${{ ! matrix.ONLY_BUILTINS }}
run: |
pip install .[ray]
- name: 'pytest'
run: |
make test_coverage
env:
PARAMSURVEY_VERBOSE: ${{ matrix.PARAMSURVEY_VERBOSE }}
PYTEST_STDERR_VISIBLE: ${{ matrix.PYTEST_STDERR_VISIBLE }}
ONLY_BUILTINS: ${{ matrix.ONLY_BUILTINS }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}