Skip to content

Bump syn from 2.0.66 to 2.0.67 #1524

Bump syn from 2.0.66 to 2.0.67

Bump syn from 2.0.66 to 2.0.67 #1524

Workflow file for this run

---
name: Clippy
# Trigger the workflow on push or pull request
"on":
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
clippy:
runs-on: ubuntu-22.04
steps:
- name: Restore our cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/checkout@v4
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: "Run clippy for goatns"
run: cargo clippy