Skip to content

fixing segmentation print #198

fixing segmentation print

fixing segmentation print #198

Workflow file for this run

name: Standard checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
# - stable
# - beta
- nightly
# - 1.31.0 # MSRV
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt
- uses: actions-rs/[email protected]
with:
command: build
- uses: actions-rs/[email protected]
with:
command: build
args: --all-features
- uses: actions-rs/[email protected]
with:
command: test
- uses: actions-rs/[email protected]
with:
command: test
args: --features performance-counter # --all-features will currently fail
- uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check