Skip to content

Commit

Permalink
test self hosted gh runner
Browse files Browse the repository at this point in the history
  • Loading branch information
x86y committed Jun 10, 2024
1 parent 297c9e6 commit 2705541
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Cargo Check

on:
workflow_dispatch:

jobs:
cargo-check:
if: github.event.pull_request.user.login == 'x86y'
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
- name: Run cargo check
run: rustup default stable && cargo check

0 comments on commit 2705541

Please sign in to comment.