Skip to content

Added cargo-deny file #21

Added cargo-deny file

Added cargo-deny file #21

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Run tests
run:
cargo test test -- --test-threads=1 --show-output