Skip to content

Merge branch 'develop/v2' into feature/v2--patch--hpo.rst #706

Merge branch 'develop/v2' into feature/v2--patch--hpo.rst

Merge branch 'develop/v2' into feature/v2--patch--hpo.rst #706

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04']
python-version: ['3.10']
test_target: ['apps', 'hpo', 'torch']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e .[all_dev]
- name: Run pytest
run: pytest -v --cov=aiaccel/${{ strategy.target }} --cov-branch --cov-report=term-missing tests/${{ strategy.target }}