Skip to content

Merge pull request #1 from optuna/add-simple-auto-matplotlib-example #10

Merge pull request #1 from optuna/add-simple-auto-matplotlib-example

Merge pull request #1 from optuna/add-simple-auto-matplotlib-example #10

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request: {}
workflow_dispatch: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- name: Setup Python${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Output installed packages
run: |
uv pip freeze
- name: Output dependency tree
run: |
uv pip install pipdeptree
uv run pipdeptree
- name: Run Test
run: uv run pytest tests