Skip to content

Code test coverage to 90% #10

Code test coverage to 90%

Code test coverage to 90% #10

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Build cli
run: cargo build --features cli
- name: Build no-default-features
run: cargo build --no-default-features
- name: Run tests
run: cargo test --all-features
- name: Run clippy
run: cargo clippy --all-features -- -D warnings