Validate Cargo.lock #5744
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format and Lint | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
fmt-and-lint: | |
name: x86 Format and Lint Checks | |
timeout-minutes: 45 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
run: | | |
rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal --component rustfmt clippy | |
rustup default nightly-2023-06-01 | |
- name: Install build deps | |
uses: ./.github/actions/deps-install | |
with: | |
deps: ('protoc' 'libudev-dev') | |
- name: Build cache | |
uses: ./.github/actions/build-cache | |
- name: Backup Cargo.lock | |
run: cp Cargo.lock Cargo.lock.bak | |
- name: fmt check | |
# Format checks aren't OS dependant. | |
if: matrix.os == 'ubuntu-latest' | |
run: cargo fmt -- --check | |
- name: clippy lint | |
run: cargo clippy --all-targets --all-features -- --D warnings | |
- name: Validate Cargo.lock | |
run: | | |
if ! diff Cargo.lock Cargo.lock.bak; then | |
echo "Error: Cargo.lock has changed during the workflow. Ensure Cargo.lock is up-to-date and committed." | |
exit 1 | |
fi | |
shell: bash | |
wasm-lint: | |
name: Wasm Lint Checks | |
timeout-minutes: 45 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
run: | | |
rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal --component clippy | |
rustup default nightly-2023-06-01 | |
rustup target add wasm32-unknown-unknown | |
- name: Install build deps | |
uses: ./.github/actions/deps-install | |
with: | |
deps: ('protoc') | |
- name: Build cache | |
uses: ./.github/actions/build-cache | |
- name: clippy lint | |
run: cargo clippy --target wasm32-unknown-unknown -- --D warnings |