Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: tests
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo build --no-default-features --verbose
- run: cargo test --no-default-features --verbose
- run: cargo build --no-default-features --verbose --release
- run: cargo test --no-default-features --verbose --release