Skip to content

fix: gran coglioni

fix: gran coglioni #52

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: install dependencies
run: |
brew install macfuse
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --no-default-features -- -Dwarnings
- name: Run tests
run: cargo test --no-default-features --no-fail-fast
env:
RUST_LOG: trace