Skip to content

Add MIT license to project #35

Add MIT license to project

Add MIT license to project #35

Workflow file for this run

name: continuous-integration
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests with all features
run: cargo test --all-features --verbose
- name: Run tests with no default features (no_std)
run: cargo test --no-default-features --verbose