Skip to content

Upgrade version to 0.2.9 #100

Upgrade version to 0.2.9

Upgrade version to 0.2.9 #100

Workflow file for this run

name: Rust
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@v3
- name: Build default
run: cargo build --verbose
- name: Build feature encryption
run: cargo build --features encryption --verbose
- name: Run default tests
run: cargo test --verbose
- name: Run feature encryption tests
run: cargo test --features encryption --verbose