Skip to content

Commit

Permalink
initial commit (spin-off from async-cuda)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerwin3 committed Aug 14, 2023
0 parents commit 623ad08
Show file tree
Hide file tree
Showing 30 changed files with 3,611 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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 --all --all-features -- -D warnings
Loading

0 comments on commit 623ad08

Please sign in to comment.