Update dependencies #233
This file contains 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: 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 |