Skip to content

Commit 95ff4f8

Browse files
authored
chore(ci): move to blacksmith runners (#1613)
1 parent 3e530af commit 95ff4f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
linting:
19-
runs-on: ubuntu-latest
19+
runs-on: blacksmith-2vcpu-ubuntu-2404
2020
steps:
2121
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222
- name: Install uv and set Python version
@@ -31,7 +31,7 @@ jobs:
3131
run: uv run --frozen ruff check .
3232

3333
type-checking:
34-
runs-on: ubuntu-latest
34+
runs-on: blacksmith-2vcpu-ubuntu-2404
3535
steps:
3636
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3737
- name: Install uv and set Python version
@@ -53,7 +53,7 @@ jobs:
5353
run: uv run --frozen mypy langfuse --no-error-summary
5454

5555
ci:
56-
runs-on: ubuntu-latest
56+
runs-on: blacksmith-4vcpu-ubuntu-2404
5757
timeout-minutes: 30
5858
env:
5959
LANGFUSE_BASE_URL: "http://localhost:3000"
@@ -115,7 +115,7 @@ jobs:
115115
116116
echo "::group::Seed db"
117117
cp .env.dev.example .env
118-
pnpm run db:migrate
118+
pnpm run db:migrate
119119
pnpm run db:seed
120120
echo "::endgroup::"
121121
rm -rf .env
@@ -174,7 +174,7 @@ jobs:
174174
175175
all-tests-passed:
176176
# This allows us to have a branch protection rule for tests and deploys with matrix
177-
runs-on: ubuntu-latest
177+
runs-on: blacksmith-2vcpu-ubuntu-2404
178178
needs: [ci, linting, type-checking]
179179
if: always()
180180
steps:

0 commit comments

Comments
 (0)