Skip to content

fixed #125: improved unit tests #23

fixed #125: improved unit tests

fixed #125: improved unit tests #23

Workflow file for this run

name: "unit test"
on:
push:
branches: "master"
paths: "**.rs"
pull_request:
types: review-requested
jobs:
cargo-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/git
~/.cargo/registry
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build and unit test
run: cargo test