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 2260993
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Expand Up @@ -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:
Expand Down

0 comments on commit 2260993

Please sign in to comment.