Skip to content

feat(Optuna): Allow for parsing of Choice Nodes #395

feat(Optuna): Allow for parsing of Choice Nodes

feat(Optuna): Allow for parsing of Choice Nodes #395

Workflow file for this run

name: pre-commit
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-all-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install pre-commit
run: |
pip install pre-commit
pre-commit install
- name: Run pre-commit
run: |-
pre-commit run --all-files