Skip to content

test self hosted runner #3

test self hosted runner

test self hosted runner #3

Workflow file for this run

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