Skip to content

typo

typo #12

Workflow file for this run

name: Make Plot
on:
push:
branches: main
workflow_dispatch:
inputs:
reason:
description: 'Reason'
required: false
default: 'Manual trigger'
jobs:
Render:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./phoenix-data
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
run: uv sync --locked --all-extras
- name: Render plot
run: uv run make_plot.py
- name: Commit plot
uses: EndBug/add-and-commit@v9
with:
message: 'Add updated plot file'
add: 'phoenix-data/bokeh_plot.html'