Skip to content

docs: updated readme #13

docs: updated readme

docs: updated readme #13

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 tests (No Features)
run: cargo test --verbose
- name: Run tests (Encoding)
run: cargo test --verbose --features=encoding
- name: Run tests (Decoding)
run: cargo test --verbose --features=decoding
- name: Run tests (All Features)
run: cargo test --verbose --all-features