Skip to content

Update pprof requirement from 0.11 to 0.13 #34

Update pprof requirement from 0.11 to 0.13

Update pprof requirement from 0.11 to 0.13 #34

Workflow file for this run

name: Test
on: [ push, workflow_dispatch ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo
uses: Swatinem/[email protected]
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
env:
RUST_BACKTRACE: 1