Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Sep 28, 2022
1 parent 9746d43 commit c0b8d16
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Expand Up @@ -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:
Expand Down

0 comments on commit c0b8d16

Please sign in to comment.