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

on:
push:
branches:
- '**'

jobs:
cargo-check:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run cargo check
run: cargo check

0 comments on commit d648f6c

Please sign in to comment.