Skip to content

feat: expose build to build logger without registering in log crate (… #1

feat: expose build to build logger without registering in log crate (…

feat: expose build to build logger without registering in log crate (… #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
toolchain: [stable, nightly]
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: false
components: rustfmt, clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features
- name: Run tests
run: cargo test -- --nocapture --test-threads=1