path-value 0.1.5

Universal type and access property(s) by path
Documentation
name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  linux:
    name: Linux
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/toolchain@v1
        with:
          profile: default
          toolchain: stable
          override: true
      - name: "Format"
        uses: actions-rs/cargo@v1
        with:
          command: fmt
          args: --all -- --check
      - name: "Check"
        uses: actions-rs/cargo@v1
        with:
          command: check
          args: --examples
      - name: "Test"
        uses: actions-rs/cargo@v1
        with:
          command: test
      - name: "Clippy"
        uses: actions-rs/cargo@v1
        with:
          command: clippy
          args: --all-targets --all-features -- -D warnings