Skip to content

Release v0.6.0

Release v0.6.0 #8

Workflow file for this run

name: Build & Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt -- --check
- name: Check lints
run: cargo clippy --all-features -- -D warnings
- name: Build & test
run: cargo test --all-features