async-cuda 0.6.1

Async CUDA for Rust.
Documentation
name: ci

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:

  lints:
    runs-on: ubuntu-latest

    steps:
    - name: Checkout
      uses: actions/checkout@v3

    - name: Setup Rust
      uses: dtolnay/rust-toolchain@v1
      with:
        toolchain: stable
        components: rustfmt, clippy
    
    - name: Rustfmt
      run: cargo fmt --all -- --check

    # - name: Clippy
    #   run: cargo clippy --locked --all --all-features -- -D warnings