Skip to content

Relicense under MPL-2.0 #83

Relicense under MPL-2.0

Relicense under MPL-2.0 #83

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
strategy:
matrix:
rust:
- stable
- beta
- nightly
features:
- "default"
- "indexes"
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Run tests
run: cargo test --verbose --features ${{ matrix.features }}