Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 731 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 731 Bytes

pipeline-rust

pipeline for Affinidi rust projects

How to use

  1. add file to .github/workflows/checks.yaml
name: checks

on:
  pull_request_target:
    types:
      - opened
      - synchronize

jobs:
  rust-pipeline:
    uses: affinidi/pipeline-rust/.github/workflows/checks.yaml@main
    secrets: inherit
    with:
      auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071,RUSTSEC-2024-0373"
  1. add file to .github/workflows/release.yaml
name: "release"

on:
  push:
    branches:
      - main

jobs:
  rust-pipeline:
    uses: affinidi/pipeline-rust/.github/workflows/release.yaml@main
    secrets: inherit
    with:
      auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071,RUSTSEC-2024-0373"