2023-02-19 16:17:49 +03:00
|
|
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
2022-02-14 00:21:15 +03:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2023-05-22 18:52:44 +03:00
|
|
|
name: lint cli
|
2022-02-14 00:21:15 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
2023-06-17 15:41:22 +03:00
|
|
|
- 1.x
|
2022-02-14 00:21:15 +03:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-05-22 18:52:44 +03:00
|
|
|
- '.github/workflows/lint-cli.yml'
|
2022-02-14 00:21:15 +03:00
|
|
|
- 'tooling/cli/**'
|
|
|
|
|
2022-02-14 02:27:21 +03:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
|
|
|
|
|
2022-04-21 21:09:57 +03:00
|
|
|
concurrency:
|
2022-04-27 01:04:10 +03:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-04-21 21:09:57 +03:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-02-14 00:21:15 +03:00
|
|
|
jobs:
|
2023-05-22 18:52:44 +03:00
|
|
|
fmt:
|
2022-02-14 00:21:15 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-02-14 02:27:21 +03:00
|
|
|
|
2022-02-14 00:21:15 +03:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2022-06-25 04:01:13 +03:00
|
|
|
toolchain: stable
|
2022-02-14 00:21:15 +03:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --manifest-path ./tooling/cli/Cargo.toml --all -- --check
|
|
|
|
|
2023-05-22 18:52:44 +03:00
|
|
|
clippy:
|
2022-02-14 00:21:15 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: clippy
|
|
|
|
|
2022-11-05 00:26:30 +03:00
|
|
|
- name: install dependencies
|
2022-06-07 17:48:29 +03:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libgtk-3-dev
|
|
|
|
|
2022-11-05 00:26:30 +03:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-02-14 00:21:15 +03:00
|
|
|
with:
|
2022-11-05 00:26:30 +03:00
|
|
|
workspaces: tooling/cli
|
2022-02-14 00:21:15 +03:00
|
|
|
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
args: --manifest-path ./tooling/cli/Cargo.toml --all-targets --all-features -- -D warnings
|
|
|
|
name: cli
|