Skip to content

Commit 547ce38

Browse files
committed
feat: test out self hosted runner
1 parent e8d6cfa commit 547ce38

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ env:
2222

2323
jobs:
2424
check_clippy:
25-
runs-on: ubuntu-24.04
25+
# runs-on: ubuntu-24.04
26+
runs-on: self-hosted
2627
name: Clippy
2728
steps:
2829
- uses: actions/checkout@v4
@@ -32,15 +33,17 @@ jobs:
3233
run: cargo clippy --all-targets --workspace -- -D warnings
3334

3435
check_fmt:
35-
runs-on: ubuntu-24.04
36+
# runs-on: ubuntu-24.04
37+
runs-on: self-hosted
3638
name: Checking fmt
3739
steps:
3840
- uses: actions/checkout@v4
3941
- name: Run cargo fmt
4042
run: cargo fmt --all -- --check
4143

4244
test:
43-
runs-on: ubuntu-24.04
45+
# runs-on: ubuntu-24.04
46+
runs-on: self-hosted
4447
name: Test
4548
steps:
4649
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)