Skip to content

When restoring from a checkpoint, start the progress bar from 0 #34

When restoring from a checkpoint, start the progress bar from 0

When restoring from a checkpoint, start the progress bar from 0 #34

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Packages
run: |
sudo apt update
sudo apt install libsodium-dev
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy
- name: Setup cargo-audit
run: cargo install --force cargo-audit
- name: Generate Lockfile
run: cargo generate-lockfile
- name: Audit
run: cargo audit
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --release