Skip to content

Update dependencies + clarify license #42

Update dependencies + clarify license

Update dependencies + clarify license #42

Workflow file for this run

name: CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust (Stable)
run: curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release --locked --all-features
- name: Run Tests
run: cargo test --release