Add Bun setup step to GitHub Actions workflow

Adds the oven-sh/setup-bun@v2 action to install Bun when running
language tests for the Bun language support added previously.
This commit is contained in:
Matan Shavit 2025-10-28 21:27:21 -04:00
parent ae5018d3e5
commit 19581b6506
No known key found for this signature in database
GPG key ID: 2093205717EFF8A5

View file

@ -41,6 +41,9 @@ jobs:
with:
python-version: '3.10'
- uses: oven-sh/setup-bun@v2
if: matrix.language == 'bun'
- run: echo "$CONDA\Scripts" >> "$GITHUB_PATH"
shell: bash
if: matrix.os == 'windows-latest' && matrix.language == 'conda'