Skip to content

refactor: Full re-write of SDK #22

refactor: Full re-write of SDK

refactor: Full re-write of SDK #22

Workflow file for this run

name: Clippy
on:
workflow_dispatch:
push:
branches: [trunk]
pull_request:
branches: [trunk]
permissions:
contents: read
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Install Rust
run: rustup update stable
- name: Install Clippy
run: rustup component add clippy
- name: Run Clippy
run: cargo clippy