Skip to content

Commit 3ecabbd

Browse files
committed
add bun to workflows
1 parent c0cb1d9 commit 3ecabbd

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

.github/workflows/publish-develop-docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13+
- uses: oven-sh/setup-bun@v2
14+
with:
15+
bun-version: latest
1316
- uses: actions/setup-python@v5
1417
with:
1518
python-version: 3.x

.github/workflows/publish-latest-docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13+
- uses: oven-sh/setup-bun@v2
14+
with:
15+
bun-version: latest
1316
- uses: actions/setup-python@v5
1417
with:
1518
python-version: 3.x

.github/workflows/publish-py.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- uses: oven-sh/setup-bun@v2
16+
with:
17+
bun-version: latest
1518
- name: Set up Python
1619
uses: actions/setup-python@v5
1720
with:

.github/workflows/test-docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20+
- uses: oven-sh/setup-bun@v2
21+
with:
22+
bun-version: latest
2023
- uses: actions/setup-python@v5
2124
with:
2225
python-version: 3.x

.github/workflows/test-src.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020
steps:
2121
- uses: actions/checkout@v4
22+
- uses: oven-sh/setup-bun@v2
23+
with:
24+
bun-version: latest
2225
- name: Use Python ${{ matrix.python-version }}
2326
uses: actions/setup-python@v5
2427
with:

0 commit comments

Comments
 (0)