Skip to content

fix: encrypt hostname and project path into blob to prevent metadata … #6

fix: encrypt hostname and project path into blob to prevent metadata …

fix: encrypt hostname and project path into blob to prevent metadata … #6

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --locked
- name: Verify no OpenSSL dependency
run: |
cargo tree 2>/dev/null | grep -i openssl && echo "ERROR: OpenSSL found in dependency tree" && exit 1 || echo "OK: No OpenSSL dependency"