Skip to content

feat: Implement Logseq directory import and file sync with simplified DDD architecture #14

feat: Implement Logseq directory import and file sync with simplified DDD architecture

feat: Implement Logseq directory import and file sync with simplified DDD architecture #14

Workflow file for this run

name: Rust Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry and binaries
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-nextest
restore-keys: |
${{ runner.os }}-cargo-
- name: Install cargo-nextest
run: cargo nextest --version || cargo install cargo-nextest --locked
- name: Run tests
run: cargo nextest run