Skip to content

chore(deps): update to latest rust nightly (#38) #76

chore(deps): update to latest rust nightly (#38)

chore(deps): update to latest rust nightly (#38) #76

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt, clippy
- name: Check code format
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- uses: actions-rs/cargo@v1
with:
command: test
args: --no-fail-fast # Customize args for your own needs
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off' # -Zno-landing-pads
- id: coverage
uses: actions-rs/grcov@v0.1
- name: Coveralls upload
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.coverage.outputs.report }}
- name: Run benchmarks
run: cargo bench --verbose
- name: Build docs
run: cargo doc --verbose