Skip to content

fix(driver): compile on android (#916) #13

fix(driver): compile on android (#916)

fix(driver): compile on android (#916) #13

Workflow file for this run

name: Check Code Format
on:
merge_group:
types: [checks_requested]
push:
branches:
- master
paths:
- 'rustfmt.toml'
- '**/Cargo.toml'
- '**/*.rs'
- '.github/workflows/ci_format.yml'
pull_request:
branches:
- master
paths:
- 'rustfmt.toml'
- '**/*.rs'
- '.github/workflows/ci_format.yml'
env:
RUST_BACKTRACE: 1
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- name: Setup Rust Toolchain
run: |
rustup default nightly
rustup component add rustfmt
- name: Check Format
run: cargo fmt --all -- --check