Skip to content

Bump bumpalo from 3.4.0 to 3.12.0 (#28) #43

Bump bumpalo from 3.4.0 to 3.12.0 (#28)

Bump bumpalo from 3.4.0 to 3.12.0 (#28) #43

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Install system dependencies
run: sudo apt-get install -y libblosc-dev libsqlite3-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose