Skip to content

Merge pull request #56 from oasisprotocol/kostko/feature/release-3.2.… #174

Merge pull request #56 from oasisprotocol/kostko/feature/release-3.2.…

Merge pull request #56 from oasisprotocol/kostko/feature/release-3.2.… #174

Workflow file for this run

# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-audit
# Trigger the workflow when:
on:
# A push modifies one of the matches files.
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
audit:
# NOTE: This name appears in GitHub's Checks API.
name: audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo audit
uses: taiki-e/install-action@v2
with:
tool: cargo-audit
- name: Audit dependencies
run: cargo audit