procsys 0.7.0

Rust library to retrieve system, kernel, and process metrics from the pseudo-filesystems /proc and /sys
Documentation
---
name: Publish

on:
    push:
        tags:
           - 'v*'

    workflow_dispatch:

jobs:
    publish_crate:
        name: Publish crate
        runs-on: 'ubuntu-latest'
        steps:
          - name: Check out the repo
            uses: actions/checkout@v2

          - name: Install stable toolchain
            uses: actions-rs/toolchain@v1
            with:
              profile: minimal
              toolchain: stable
              override: true

          - run: cargo publish --token ${CRATES_TOKEN}
            env:
              CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}