Skip to content

wip tests

wip tests #8485

Workflow file for this run

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 }}