Skip to content

chore: a few small lints #16

chore: a few small lints

chore: a few small lints #16

Workflow file for this run

name: test
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
env:
RUST_BACKTRACE: 1
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
rust_version: [ stable ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust_version }}
override: true
- name: Build the library and all binaries
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --features cmd --bins
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose