Enable other jobs
Some checks failed
CI / Formatting (push) Successful in 35s
CI / Clippy (push) Successful in 6m21s
CI / Build (push) Failing after 37m10s

This commit is contained in:
Michael Bradley 2025-03-13 13:24:03 -04:00
parent 1b3a544fe3
commit c2f1d76f8f
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -4,18 +4,18 @@ on: [push]
name: CI name: CI
jobs: jobs:
# formatting: formatting:
# name: Formatting name: Formatting
# runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
# steps: steps:
# - name: Checkout - name: Checkout
# uses: actions/checkout@v4 uses: actions/checkout@v4
# - name: Set up Rust - name: Set up Rust
# uses: https://github.com/dtolnay/rust-toolchain@nightly uses: https://github.com/dtolnay/rust-toolchain@nightly
# with: with:
# components: rustfmt components: rustfmt
# - name: Check Rust formatting - name: Check Rust formatting
# run: cargo fmt --all -- --check run: cargo fmt --all -- --check
clippy: clippy:
name: Clippy name: Clippy
@ -34,13 +34,17 @@ jobs:
- name: Run Clippy - name: Run Clippy
run: cargo clippy -- -D warnings run: cargo clippy -- -D warnings
# build: build:
# name: Build name: Build
# runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
# steps: steps:
# - name: Checkout the code - name: Checkout the code
# uses: actions/checkout@v4 uses: actions/checkout@v4
# - name: Set up Rust - name: Set up Rust
# uses: https://github.com/dtolnay/rust-toolchain@nightly uses: https://github.com/dtolnay/rust-toolchain@nightly
# - name: Build project - name: Install dependencies
# run: cargo build run: |
sudo apt-get update
sudo apt-get -y install libasound2-dev libudev-dev libwayland-dev
- name: Build project
run: cargo build