From c0b8d16748defed527143daf4ba3adc233e4b377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Wed, 28 Sep 2022 18:04:30 +0200 Subject: [PATCH] CI --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2187697..c20576f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -212,6 +212,27 @@ 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 + components: rust-src + - run: cargo +nightly check --target ${{ matrix.target }} -Z build-std --examples + doc: runs-on: ubuntu-latest steps: