aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-12-01 22:49:22 -0500
committerLibravatar Silas Bartha <[email protected]>2024-12-01 22:49:22 -0500
commit80c89c2c93480a6c6bd1ee4ae51f227250c9bd15 (patch)
treef62ceb6e018c5e567a6b5727610032ff2482fcf8 /.github/workflows/rust.yml
parentf6e4b5d25212ce15f7e83834e74908c62e92dcf0 (diff)
Add Licenses, Readme, and Metadata
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
new file mode 100644
index 0000000..e38739d
--- /dev/null
+++ b/.github/workflows/rust.yml
@@ -0,0 +1,24 @@
+name: Rust
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+env:
+ CARGO_TERM_COLOR: always
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Dependencies
+ run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
+ - name: Build
+ run: cargo build --verbose
+ - name: Run tests
+ run: cargo test --verbose