Skip to content

Run cargo audit

Run cargo audit #2243

Workflow file for this run

name: CI - Lint
on:
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
clippy_check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install just
run: |
sudo apt-get update
sudo apt-get install -y just
- name: Run Lint
run: just --unstable lint