Skip to content

Basic support profiling task #60

Basic support profiling task

Basic support profiling task #60

Workflow file for this run

name: Audit
on:
pull_request:
types:
- opened
- reopened
- synchronize
paths:
- 'Cargo.lock'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
audit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Show env
uses: ./.github/actions/show-env
- name: Audit
uses: ./.github/actions/audit