Skip to content

chore: bump to v0.7.0 #85

chore: bump to v0.7.0

chore: bump to v0.7.0 #85

Workflow file for this run

name: Rust
on: push
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
linters:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace -- -D warnings
test:
name: Test Suite
runs-on: ubuntu-latest
env:
RUSTLOG: info
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --features unknown_log