Skip to content

ci: move Linux workflows to self-hosted runners (wavekat-ci) #102

ci: move Linux workflows to self-hosted runners (wavekat-ci)

ci: move Linux workflows to self-hosted runners (wavekat-ci) #102

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: [self-hosted, wavekat-ci]
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test
- run: cargo build --release