Skip to content

Make simple_auth longer to reduce variation #154

Make simple_auth longer to reduce variation

Make simple_auth longer to reduce variation #154

Workflow file for this run

name: Check
on: push
jobs:
cargo:
name: Cargo
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
components: clippy, rustfmt
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Build sources
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all-targets --all-features
- name: Run linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets --all-features -- -D warnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-targets --all-features