Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tscircuit/prompt-benchmarks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.38
Choose a base ref
...
head repository: tscircuit/prompt-benchmarks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.39
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 15, 2025

  1. v0.0.38

    actions-user committed Feb 15, 2025
    Copy the full SHA
    4f856a6 View commit details

Commits on Feb 17, 2025

  1. added test workflow

    ShiboSoftwareDev committed Feb 17, 2025
    Copy the full SHA
    274d7e6 View commit details
  2. Merge pull request #39 from tscircuit/test-workflow

    added test workflow
    ShiboSoftwareDev authored Feb 17, 2025
    Copy the full SHA
    588326a View commit details
Showing with 27 additions and 1 deletion.
  1. +26 −0 .github/workflows/bun-test.yml
  2. +1 −1 package.json
26 changes: 26 additions & 0 deletions .github/workflows/bun-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
name: Bun Test

on:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: bun test --timeout 50000
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tscircuit/prompt-benchmarks",
"version": "0.0.37",
"version": "0.0.38",
"main": "dist/index.js",
"repository": "github:tscircuit/prompt-benchmarks",
"homepage": "https://github.com/tscircuit/prompt-benchmarks#readme",