Skip to content

optimized spec by using bytes to allow to avoid too many copies when … #22

optimized spec by using bytes to allow to avoid too many copies when …

optimized spec by using bytes to allow to avoid too many copies when … #22

Workflow file for this run

on: [push]
name: build
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Install openssl
run: sudo apt-get install pkg-config libssl-dev
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test