Skip to content

ci: check android & ios #1588

ci: check android & ios

ci: check android & ios #1588

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