Skip to content

added LICENSE

added LICENSE #17

Workflow file for this run

name: Cargo test
on:
push:
branches:
- master
workflow_dispatch:
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
cargo-test:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Test binary
run: cargo test