Skip to content

Update pprof requirement from 0.11 to 0.13 #27

Update pprof requirement from 0.11 to 0.13

Update pprof requirement from 0.11 to 0.13 #27

Workflow file for this run

name: Compatability
on:
push:
paths: [ "src/**", "examples/**", "benches/**", "Cargo.toml"]
workflow_dispatch: {}
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Validate Compatibility
runs-on: ${{ matrix.os }}
strategy:
matrix:
toolchain: [stable, beta, nightly]
os: [ubuntu-latest, macos-latest, windows-latest]
features: ["--features default", "--no-default-features", "--all-features"]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Cache Cargo
uses: Swatinem/[email protected]
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --release ${{ matrix.features }}
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --release ${{ matrix.features }}
env:
RUST_BACKTRACE: 1