Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: cargo check --workspace --all-targets --all-features

check_msrv:
name: Check ash, ash-window and ash-rewrite MSRV (1.69.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@1.69.0
- name: Check ash, ash-window and ash-rewrite
run: cargo check -p ash -p ash-rewrite -p ash-window --all-features
Expand All @@ -26,7 +26,7 @@ jobs:
name: Generated
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Checkout submodule
# Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise
run: git submodule update --recursive --init --force --checkout
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- name: Install Vulkan loader
run: sudo apt-get install libvulkan-dev
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Test all targets
run: cargo test --workspace --all-targets
- name: Test docs
Expand All @@ -51,7 +51,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: cargo fmt --all -- --check

clippy:
Expand All @@ -65,7 +65,7 @@ jobs:
- x86_64-apple-darwin
- aarch64-apple-ios
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Add Rust target ${{ matrix.target }}
run: rustup target add ${{ matrix.target }}
- name: Clippy lint without features
Expand All @@ -86,7 +86,7 @@ jobs:
name: Build-test docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Document all crates
env:
RUSTDOCFLAGS: -Dwarnings
Expand Down