Skip to content

fixed docs typo

fixed docs typo #28

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
- name: snapshot tests
run: |
chmod +x ./tests/snapshot_tests.sh
./tests/snapshot_tests.sh
shell: bash