Skip to content

Merge pull request #27 from slog-rs/dependabot/cargo/syn-2.0.37 #17

Merge pull request #27 from slog-rs/dependabot/cargo/syn-2.0.37

Merge pull request #27 from slog-rs/dependabot/cargo/syn-2.0.37 #17

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build (all features)
run: cargo clippy --verbose --all-targets --all-features --all -- -D warnings
- name: Build (no features)
run: cargo clippy --verbose --all-targets --no-default-features --all -- -D warnings
- name: Run tests (all features)
run: cargo test --verbose --all --all-features
- name: Run tests (no features)
run: cargo test --verbose --all --no-default-features