Skip to content

Allow configuring the mock server (host, port, assert_on_drop) #102

Allow configuring the mock server (host, port, assert_on_drop)

Allow configuring the mock server (host, port, assert_on_drop) #102

Workflow file for this run

name: Linters
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
rustfmt:
name: Run rustfmt on the minimum supported toolchain
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.0
profile: minimal
components: clippy, rustfmt
override: true
- name: Run rustfmt
run: cargo fmt -- --check
clippy:
name: Run clippy on the minimum supported toolchain
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.0
profile: minimal
components: clippy, rustfmt
override: true
- name: Run clippy
run: cargo clippy-mockito