custom-format 0.3.4

Custom formatting for Rust.
Documentation
name: Audit

on:
  schedule:
    - cron: "0 0 * * 0"

jobs:
  audit:
    name: "Audit"

    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v5

      - name: Install Rust
        id: actions-rs
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: Audit
        run: |
          cargo install cargo-audit
          cargo audit