Skip to content

Fix typo in example #134

Fix typo in example

Fix typo in example #134

Workflow file for this run

name: Check changes
on:
push:
branches:
- "**"
- "*"
pull_request:
branches:
- "master"
- "main"
env:
CARGO_TERM_COLOR: always
jobs:
make_ci:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
# target/
key: ${{ runner.os }}-cargo-${{ matrix.toolchain }} # ${{ hashFiles('**/Cargo.lock') }}
- run:
rustup update ${{ matrix.toolchain }} && rustup default ${{
matrix.toolchain }}
- run: make ci