-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'canary' into gemini_demo
- Loading branch information
Showing
43 changed files
with
1,573 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
name: BAML Runtime | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "engine/**" | ||
- ".github/workflows/primary.yml" | ||
branches: | ||
- canary | ||
push: | ||
paths: | ||
- "engine/**" | ||
- ".github/workflows/primary.yml" | ||
branches: | ||
- canary | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
repository-projects: read | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9.0.6 | ||
run_install: false | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: pnpm | ||
cache-dependency-path: | | ||
typescript/**/pnpm-lock.yaml | ||
- name: Install Node | ||
run: pnpm install --frozen-lockfile | ||
working-directory: typescript | ||
- name: Check TS Lint | ||
run: pnpm biome ci . --organize-imports-enabled=false | ||
working-directory: typescript | ||
test_node_generator: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9.0.6 | ||
run_install: false | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: pnpm | ||
cache-dependency-path: | | ||
engine/language_client_typescript/pnpm-lock.yaml | ||
integ-tests/typescript/pnpm-lock.yaml | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: engine | ||
- name: Install Node | ||
run: pnpm install --frozen-lockfile | ||
working-directory: engine/language_client_typescript | ||
- name: Build Node | ||
run: pnpm build | ||
working-directory: engine/language_client_typescript | ||
- name: Install Node | ||
run: pnpm install --frozen-lockfile | ||
working-directory: integ-tests/typescript | ||
- name: Test Node Generator | ||
run: pnpm generate | ||
working-directory: integ-tests/typescript | ||
- name: Ensure No Changes | ||
run: git diff --exit-code | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: engine | ||
- name: Build Rust | ||
run: cargo build | ||
working-directory: engine | ||
- name: Test Rust | ||
run: cargo test | ||
working-directory: engine |
Oops, something went wrong.