Skip to content

refactor: use FutureExt if possible (#923) #1

refactor: use FutureExt if possible (#923)

refactor: use FutureExt if possible (#923) #1

Workflow file for this run

name: Check iOS
on:
merge_group:
types: [checks_requested]
push:
branches:
- master
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '.github/workflows/ci_check_ios.yml'
pull_request:
branches:
- master
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '.github/workflows/ci_check_ios.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
check_ios:
runs-on: macos-latest
strategy:
matrix:
target:
- aarch64-apple-ios
- aarch64-apple-ios-macabi
steps:
- uses: actions/checkout@v6
- name: Setup Rust Toolchain
run: |
rustup default nightly
rustup target add ${{ matrix.target }}
rustup component add clippy
- name: Check clippy
shell: bash
run: |
cargo clippy --target ${{ matrix.target }} --all-features --all-targets -- -Dwarnings