Skip to content

Integrate coset crate and migrate to ciborium #178

Integrate coset crate and migrate to ciborium

Integrate coset crate and migrate to ciborium #178

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
- name: Run tests
run: |
cargo test
cd macros
cargo test
- name: Clippy
run: |
cargo clippy
cd macros
cargo clippy
- name: Fmt
run: |
cargo fmt -- --check
cd macros
cargo fmt -- --check