Skip to content

refactor: Simplify map_or #15

refactor: Simplify map_or

refactor: Simplify map_or #15

Workflow file for this run

name: Lint code
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
run: |
rustup update nightly
rustup default nightly
rustup component add clippy
- name: Download Proto Files and Install Protoc
uses: ./.github/actions/protos
with:
cdn: ${{ secrets.PROTOS_CDN }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings