Merge branch 'main' into quinna.halim/update-package-logic #8258
Workflow file for this run
This file contains 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: "Rust CI" | |
on: | |
push: | |
pull_request: | |
paths: | |
- src/** | |
merge_group: | |
# Trigger jobs when PR is added to merge queue | |
types: [checks_requested] | |
jobs: | |
check: | |
name: Rust CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
extension: ["src/core"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install latest stable toolchain and rustfmt | |
run: rustup update stable && rustup default stable && rustup component add rustfmt clippy | |
- name: Run cargo build | |
run: cargo build | |
working-directory: ${{ matrix.extension }} | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
working-directory: ${{ matrix.extension }} | |
- name: Run cargo clippy | |
run: cargo clippy -- -D warnings | |
working-directory: ${{ matrix.extension }} | |
- name: Run cargo test | |
run: cargo test --no-fail-fast --locked | |
working-directory: ${{ matrix.extension }} |