From 22609932128f14214428aedc74b17e6111fe5da7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Wed, 28 Sep 2022 17:59:03 +0200 Subject: [PATCH] CI --- .github/workflows/rust.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2187697..c2ce75d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -212,6 +212,26 @@ jobs: - run: cargo check --all-targets - run: cargo clippy --all-targets -- -D warnings + no-docker-image-check-only: + strategy: + fail-fast: false + matrix: + target: + - i686-unknown-haiku + - x86_64-unknown-haiku + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install Rust + id: actions-rs + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + - run: cargo +nightly check --target ${{ matrix.target }} -Z build-std --examples + doc: runs-on: ubuntu-latest steps: