Skip to content

Update missing-owner-check lint to ignore if the key of the account is compared #541

Update missing-owner-check lint to ignore if the key of the account is compared

Update missing-owner-check lint to ignore if the key of the account is compared #541

Workflow file for this run

name: CI
on: [pull_request, push, workflow_dispatch]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dylint-link
run: cargo install dylint-link
- name: Prettier
run: |
npm install -g prettier && prettier --check '**/*.md' '**/*.yml'
- name: Markdown link check
run: |
npm install -g markdown-link-check && find . -name '*.md' | xargs markdown-link-check
- name: Cargo sort
run: |
cargo install cargo-sort
find . -name Cargo.toml | xargs -n 1 dirname | xargs -n 1 cargo sort --check --grouped
- name: Format
run: |
cargo install rustfmt_if_chain
rustup component add rustfmt
find . -name '*.rs' -exec rustfmt_if_chain --edition 2021 {} \; && git diff --exit-code
- name: Format example READMEs
run: ./scripts/update_readmes.sh && git diff --exit-code
- name: Clippy
run: |
rustup component add clippy
./scripts/clippy.sh
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dylint-link
run: cargo install dylint-link
- name: Test
run: cargo test