Skip to content

feat: add cuda-aware just runner #88

feat: add cuda-aware just runner

feat: add cuda-aware just runner #88

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Format
run: cargo fmt --check
- name: Run tests
run: cargo test --verbose