Skip to content

Upgrade: Bump serde from 1.0.171 to 1.0.185 #132

Upgrade: Bump serde from 1.0.171 to 1.0.185

Upgrade: Bump serde from 1.0.171 to 1.0.185 #132

Workflow file for this run

name: Docs Build & Test
on: [pull_request, push]
jobs:
build_and_test:
name: Rust toolchain CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/cache@v3
id: "cache-cargo"
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- if: ${{ steps.cache-cargo.outputs.cache-hit != 'true' }}
run: "cargo check"
- name: "Doctest for all solutions"
run: "cargo test --doc"