Skip to content

trying to add dir to cli #2

trying to add dir to cli

trying to add dir to cli #2

Workflow file for this run

name: Cargo Build & Test
defaults:
run:
shell: bash
working-directory: ./scripts
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Noted - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: ./scripts/init_db_dir.sh
- run: cargo test --verbose