Skip to content

style: 🎨 improve formatting in README.md #11

style: 🎨 improve formatting in README.md

style: 🎨 improve formatting in README.md #11

Workflow file for this run

name: cargo audit
on:
push:
pull_request:
branches: [ "master", "develop" ]
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
env:
CARGO_TERM_COLOR: always
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-audit-${{ hashFiles('**/Cargo.lock') }}
- run: cargo install cargo-audit && cargo audit -Dwarnings