Skip to content

new path for the cli script #6

new path for the cli script

new path for the cli script #6

Workflow file for this run

name: Cargo Build & Test
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: pwd
continue-on-error: true
- run: ls -al
continue-on-error: true
- run: bash ./.github/init_db_dir.sh
- run: cargo test --verbose