Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nixon-voxell committed Jan 22, 2025
0 parents commit 71fd250
Show file tree
Hide file tree
Showing 17 changed files with 6,087 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/assets/CREDITS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kestrel.jpg - [Kevin Mueller](https://unsplash.com/@kevinmueller)
Binary file added .github/assets/crow-512.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/crow.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 73 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- run: cargo check --workspace --all-features --all-targets

check-no-defaults:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- run: cargo check --workspace --no-default-features

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- run: rustup component add clippy
- run: cargo clippy --workspace --all-features --all-targets -- -D warnings

doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- run: cargo doc --workspace --all-features --no-deps --document-private-items
env:
RUSTDOCFLAGS: -D warnings

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- run: cargo test --workspace --all-features --all-targets

# Note: cargo test --all-targets disables doc tests, so we have to add this to test docs
# doctest:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - run: sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
# - run: cargo test --workspace --all-features --doc
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 71fd250

Please sign in to comment.