Skip to content

build(deps): bump cc from 1.0.99 to 1.0.100 #929

build(deps): bump cc from 1.0.99 to 1.0.100

build(deps): bump cc from 1.0.99 to 1.0.100 #929

Workflow file for this run

name: Clippy lints
on: push
jobs:
clippy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get install -y curl gcc g++ libsqlite3-dev wget libssl-dev pkg-config
- name: Rustup
run: |
wget -O /tmp/ru.sh https://sh.rustup.rs
chmod u+x /tmp/ru.sh
/tmp/ru.sh -y --profile minimal --component clippy
source $HOME/.cargo/env
export PATH="$HOME/.cargo/bin:$PATH"
- name: List installed Rust and Cargo version
run: |
rustc --version
cargo --version
- name: Lint with clippy
run: |
cargo clippy -- -D warnings