Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Generic doc string and doctests for all Vector functions #30

Generic doc string and doctests for all Vector functions

Generic doc string and doctests for all Vector functions #30

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run test
run: cargo test --verbose
- name: Run test log feature
run: cargo test --verbose --features "log"