Skip to content

feat: CRP-2911 Modify AES-GCM encryption to be more robust #460

feat: CRP-2911 Modify AES-GCM encryption to be more robust

feat: CRP-2911 Modify AES-GCM encryption to be more robust #460

Workflow file for this run

name: Backend CI Rust Clippy
on:
push:
branches:
- main
pull_request:
paths:
- backend/rs/**
- examples/**/backend/**
- Cargo.toml
- Cargo.lock
- .github/workflows/provision-linux.sh
- .github/workflows/provision-darwin.sh
- .github/workflows/clippy.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cargo-clippy-backend-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Run Clippy Linux
run: |
set -eExuo pipefail
export CARGO_TERM_COLOR=always # ensure output has colors
cargo clippy -- -Dwarnings
cargo fmt --check