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