Skip to content

Remove duplicated Cipher and Folder client #1614

Remove duplicated Cipher and Folder client

Remove duplicated Cipher and Folder client #1614

Workflow file for this run

name: Rust tests
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
ci-pass:
name: Check if tests passed
runs-on: ubuntu-24.04
needs:
- test
steps:
- name: Check if tests passed
run: exit 0
test:
name: ${{ matrix.os }} / default
runs-on: ${{ matrix.os || 'ubuntu-24.04' }}
strategy:
matrix:
os:
- ubuntu-24.04
- macOS-14
- windows-2022
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust
uses: dtolnay/rust-toolchain@56f84321dbccf38fb67ce29ab63e4754056677e0 # stable
with:
toolchain: stable
- name: Cache cargo registry
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
- name: Test
run: cargo test --workspace --all-features
coverage:
name: Coverage
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install rust
uses: dtolnay/rust-toolchain@56f84321dbccf38fb67ce29ab63e4754056677e0 # stable
with:
toolchain: stable
components: llvm-tools
- name: Cache cargo registry
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
- name: Install cargo-llvm-cov
run: cargo install cargo-llvm-cov --version 0.5.38
- name: Generate coverage
run: cargo llvm-cov --all-features --lcov --output-path lcov.info --ignore-filename-regex "crates/bitwarden-api-"
- name: Upload to codecov.io
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1