Skip to content

Add CWT support

Add CWT support #24

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
- name: Clippy
run: cargo clippy --all-features
- name: Fmt
run: cargo fmt -- --check