Skip to content

Commit

Permalink
feat: test out self hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo committed Sep 16, 2024
1 parent e8d6cfa commit 547ce38
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ env:

jobs:
check_clippy:
runs-on: ubuntu-24.04
# runs-on: ubuntu-24.04
runs-on: self-hosted
name: Clippy
steps:
- uses: actions/checkout@v4
Expand All @@ -32,15 +33,17 @@ jobs:
run: cargo clippy --all-targets --workspace -- -D warnings

check_fmt:
runs-on: ubuntu-24.04
# runs-on: ubuntu-24.04
runs-on: self-hosted
name: Checking fmt
steps:
- uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt --all -- --check

test:
runs-on: ubuntu-24.04
# runs-on: ubuntu-24.04
runs-on: self-hosted
name: Test
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 547ce38

Please sign in to comment.