Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Bump version to 0.1.1 #14

Bump version to 0.1.1

Bump version to 0.1.1 #14

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Run tests (std)
run: cargo test
- name: Run tests (no_std)
run: cargo test --no-default-features --features alloc