Skip to content

Bug Fix

Bug Fix #141

Workflow file for this run

name: Test our build
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build with all features
run: |
cargo build --all-features
- name: Test out our build
run: |
cargo test