Skip to content

refactor: simplify frame capture code #58

refactor: simplify frame capture code

refactor: simplify frame capture code #58

Workflow file for this run

name: Rust Crates Security Audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
# Cancel old builds on new commit for same workflow + branch/PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
audit-rs:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}