feat(driver,iour): detect kernel version & fallback #2398
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check | |
| on: | |
| merge_group: | |
| types: [checks_requested] | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/*.rs' | |
| - '.github/workflows/ci_check.yml' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/*.rs' | |
| - '.github/workflows/ci_check.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| env: | |
| RUST_BACKTRACE: 1 | |
| jobs: | |
| check: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Rust Toolchain | |
| run: | | |
| rustup default nightly | |
| rustup component add clippy | |
| - name: Check clippy | |
| shell: bash | |
| run: | | |
| cargo clippy --all-features --all-targets -- -Dwarnings | |
| - name: Check Docs | |
| run: | | |
| cargo doc --workspace --all-features --no-deps | |
| check_stub: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Rust Toolchain | |
| run: | | |
| rustup default nightly | |
| - name: Check | |
| shell: bash | |
| # We only make sure that the stub driver compiles. | |
| run: | | |
| cargo check --features all,nightly,ring,sync --no-default-features --all-targets |