Skip to content

Commit

Permalink
Add placeholder workflow for building PyO3 wheels. (#1244)
Browse files Browse the repository at this point in the history
GitHub doesn't allow running new workflows from branches if the workflow
by that name doesn't already exist on the main branch. I'm creating this
placeholder workflow to work around that, so I can then trigger and test
the workflow from my own branch.
  • Loading branch information
obi1kenobi authored Nov 21, 2024
1 parent 4ef9789 commit 25e606b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build_langsmith_pyo3_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build langsmith_pyo3 wheels

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
hello-world:
runs-on: ubuntu-20.04
steps:
- run: echo 'hello world'

0 comments on commit 25e606b

Please sign in to comment.