Skip to content

Fix build break of Android test #217

Fix build break of Android test

Fix build break of Android test #217

Workflow file for this run

name: Cargo Test
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build default
run: cargo build --verbose -r
- name: Build feature encryption
run: cargo build --features encryption --verbose -r
- name: Run default tests
run: cargo test --verbose -r
- name: Run feature encryption tests
run: cargo test --features encryption --verbose -r