[breaking] pruning and reorganizing fields from protos, moving stuff to state #2049
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clippy-action | |
on: | |
pull_request: | |
branches: [main] | |
paths: [nexus/**] | |
jobs: | |
clippy: | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
strategy: | |
matrix: | |
runner: [ubicloud-standard-4-ubuntu-2204-arm] | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: bufbuild/[email protected] | |
- name: setup protos | |
run: | | |
./generate_protos.sh | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: clippy | |
run: cargo clippy -- -D warnings | |
working-directory: ./nexus |