Skip to content

chore(deps): bump syn from 2.0.82 to 2.0.85 #63

chore(deps): bump syn from 2.0.82 to 2.0.85

chore(deps): bump syn from 2.0.82 to 2.0.85 #63

Workflow file for this run

name: Code Lint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Clippy
run: rustup component add clippy
- name: Run Clippy
run: cargo clippy --all-targets -- -D warnings # Without `--all-features` because it's not updated yet.
- name: Code Spell Check
uses: streetsidesoftware/cspell-action@v6
with:
files: "**"
config: .cspell.json
strict: true
verbose: true