Merge pull request #51 from oasisprotocol/kostko/feature/prepare-3.1.… #153
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
# 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 | |
- run: cargo audit |