From 4ea038bd026c5a8d8f29747ee85d9e65784e1eb6 Mon Sep 17 00:00:00 2001 From: ghoscht <31184695+GHOSCHT@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:31:18 +0100 Subject: [PATCH] Update .forgejo/workflows/rust.yml --- .forgejo/workflows/rust.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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