Skip to content

docs: add 'map' to structural overview and fix typo #86

docs: add 'map' to structural overview and fix typo

docs: add 'map' to structural overview and fix typo #86

Workflow file for this run

permissions:
contents: read
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: test
jobs:
test:
runs-on: ubuntu-latest
name: ${{ matrix.toolchain }} / test
strategy:
matrix:
toolchain: [stable]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: cargo generate-lockfile
if: hashFiles('Cargo.lock') == ''
run: cargo generate-lockfile
- name: cargo test --locked
run: cargo test --locked --all-features