From 33ac3ae21351278e7bea74df8cd6b9c04dd44d66 Mon Sep 17 00:00:00 2001 From: Didier Date: Thu, 15 Jun 2023 12:23:41 +0200 Subject: [PATCH] fix: automation --- .github/workflows/build.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0408992..e71a05d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,10 +13,12 @@ jobs: - name: install dependencies run: | apt update -y - apt install -y curl + apt install -y curl gcc g++ make - uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - - name: Build - run: cargo build --verbose + - uses: actions-rs/cargo@v1 + with: + command: build + args: --verbose --all