mirror of
https://github.com/maciejpedzich/f1-game-packet-parser.git
synced 2025-04-12 00:21:11 +02:00
35 lines
731 B
YAML
35 lines
731 B
YAML
# Check for licenses and advisores
|
|
# ../../deny.toml
|
|
name: Cargo Deny
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
cargo-deny:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable toolchain
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
- name: Cargo deny
|
|
uses: EmbarkStudios/cargo-deny-action@v2
|
|
|
|
cargo-audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable toolchain
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
- uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-audit
|
|
|
|
- run: cargo audit |