refactor: 🔨 Put modules visibility in private as much as possible #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-FileCopyrightText: 2023 The MalwareTracesGenerator development team | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Audit the project | |
on: [push, pull_request] | |
jobs: | |
cargo-deny: | |
name: Audit with cargo-deny | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Audit Rust code | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
command: check advisories |