diff --git a/.github/workflows/rimage.yml b/.github/workflows/rimage.yml index 92716993..438b4a3e 100644 --- a/.github/workflows/rimage.yml +++ b/.github/workflows/rimage.yml @@ -55,7 +55,7 @@ jobs: - name: Checkout ๐Ÿ›Ž๏ธ uses: actions/checkout@v4 - - name: Set up Ubuntu multiarch + - name: Set up Ubuntu multiarch โš™๏ธ if: startsWith(matrix.os, 'ubuntu') && matrix.target-apt-arch != 'amd64' run: | readonly DISTRO_CODENAME=jammy @@ -94,11 +94,18 @@ jobs: toolchain: stable target: ${{ matrix.target }} + - name: Build ๐Ÿ— + uses: actions-rs/cargo@v1 + with: + command: build + args: --all-features --release + - name: Test ๐Ÿงช + if: matrix.target != 'aarch64-apple-darwin' uses: actions-rs/cargo@v1 with: command: test - args: --all-features + args: --all-features --release lint: name: lint