Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Bump serde_json from 1.0.91 to 1.0.103 #549

Bump serde_json from 1.0.91 to 1.0.103

Bump serde_json from 1.0.91 to 1.0.103 #549

Workflow file for this run

name: Style check
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- master
jobs:
style_check:
strategy:
fail-fast: false
name: Style and Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Shellcheck
run: |
shellcheck --version
shellcheck ci/*.sh scripts/toolchain-version
- name: Update nightly
run: |
rustup update nightly
- name: rustfmt
run: |
if rustup component add rustfmt; then
cargo fmt --all -- --check
fi
- name: Clippy
run: |
if rustup component add clippy rustc-dev; then
cargo clippy --all
fi
version_consistency_check:
name: Toolchain version consistency check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Toolchain version consistency check
run: scripts/toolchain-version -c