Skip to content

Pull out mocks into a separate crate #25

Pull out mocks into a separate crate

Pull out mocks into a separate crate #25

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
shared-key: regular-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --workspace
- name: Run tests
run: cargo test --workspace
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
shared-key: regular-${{ hashFiles('**/Cargo.lock') }}
- name: cargo fmt
run: cargo fmt --all
- name: cargo clippy --workspace
run: cargo clippy --workspace --all-features -- -D warnings