diff --git a/.forgejo/workflows/rust.yml b/.forgejo/workflows/rust.yml index c08fd84..4f21c22 100644 --- a/.forgejo/workflows/rust.yml +++ b/.forgejo/workflows/rust.yml @@ -3,16 +3,13 @@ on: [push, pull_request] name: Continuous integration jobs: - setup: - name: Setup + build_and_test: + name: Build and test runs-on: ubuntu-latest steps: - run: apt update - run: apt install libasound2-dev libdbus-1-dev libpulse0 -y - uses: actions/checkout@v4 - uses: https://github.com/dtolnay/rust-toolchain@stable - test: - name: Build - runs-on: ubuntu-latest - steps: - - run: cargo test --all-features \ No newline at end of file + - run: cargo build --verbose --all-features + - run: cargo test --verbose --all-features \ No newline at end of file