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 86b53f7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Cargo Check

on:
push:
branches:
- '**'

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 86b53f7

Please sign in to comment.