Skip to content

build(deps): update arbiter-core requirement from 0.10.3 to 0.11.0 #53

build(deps): update arbiter-core requirement from 0.10.3 to 0.11.0

build(deps): update arbiter-core requirement from 0.10.3 to 0.11.0 #53

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: git submodule update
run: git submodule update --init --recursive
- name: cargo fmt
run: cargo +nightly fmt --all -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: git submodule update
run: git submodule update --init --recursive
- name: cargo clippy
run: cargo clippy --workspace --all-features -- -D warnings