feat: CRP-2911 Modify AES-GCM encryption to be more robust #460
This file contains hidden or 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
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 |