Skip to content

fix: tests

fix: tests #38

Workflow file for this run

name: MacOS
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-features
- name: Build (unsecure)
run: cargo build --no-default-features
- name: Run tests
run: cargo test --verbose --no-default-features --features find,github-actions --no-fail-fast
env:
RUST_LOG: trace
- name: Clippy
run: cargo clippy --features find -- -Dwarnings