Skip to content

Added null checks to dynamic store APIs #3

Added null checks to dynamic store APIs

Added null checks to dynamic store APIs #3

Workflow file for this run

---
name: Rust linting
on:
pull_request:
paths:
- .github/workflows/linting.yml
- '**/*.rs'
workflow_dispatch:
permissions: {}
jobs:
clippy-linting:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
toolchain: stable
profile: minimal
components: clippy
default: true
- name: Clippy check
env:
RUSTFLAGS: --deny warnings
run: cargo clippy --locked --all-targets