Skip to content

Fix a tiny typo in the comment on size() #57

Fix a tiny typo in the comment on size()

Fix a tiny typo in the comment on size() #57

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Markup Link Checker (mlc)
uses: becheran/mlc@v0.15.4
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run test
run: cargo test --verbose
- name: Run test release
run: cargo test --verbose --release
test-no-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run test
run: cargo test --verbose --no-default-features
- name: Run test release
run: cargo test --verbose --release --no-default-features