Skip to content

Added basic slices

Added basic slices #77

Workflow file for this run

name: Build and Test
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: cargo build
- run: cargo test --features serde
- run: cargo fmt --all -- --check
- run: cargo clippy -- -Dwarnings