cli clippy and fmt check #11
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
# Copyright 2019-2022 Tauri Programme within The Commons Conservancy | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-License-Identifier: MIT | |
name: cli clippy and fmt check | |
on: | |
push: | |
branches: | |
- dev | |
- next | |
pull_request: | |
paths: | |
- '.github/workflows/lint-fmt-cli.yml' | |
- 'tooling/cli/**' | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_INCREMENTAL: 0 # This is set to 0 by the https://github.com/Swatinem/rust-cache | |
CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
fmt_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --manifest-path ./tooling/cli/Cargo.toml --all -- --check | |
cli_clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: clippy | |
- name: install Linux dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev | |
- name: Get current date | |
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Cache cargo state | |
uses: actions/cache@v2 | |
env: | |
cache-name: cargo_state | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
~/.cargo/bin | |
key: ubuntu-latest-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-${{ env.CURRENT_DATE }} | |
restore-keys: | | |
ubuntu-latest-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}- | |
ubuntu-latest-stable-${{ env.cache-name }}- | |
ubuntu-latest-stable- | |
ubuntu-latest- | |
- name: Cache CLI cargo target | |
uses: actions/cache@v2 | |
env: | |
cache-name: cargo_cli | |
with: | |
path: tooling/cli/target | |
# Add date to the cache to keep it up to date | |
key: ubuntu-latest-stable-${{ env.cache-name }}-${{ hashFiles('tooling/cli/Cargo.lock') }}-${{ env.CURRENT_DATE }} | |
# Restore from outdated cache for speed | |
restore-keys: | | |
ubuntu-latest-stable-${{ env.cache-name }}-${{ hashFiles('tooling/cli/Cargo.lock') }} | |
ubuntu-latest-stable-${{ env.cache-name }}- | |
ubuntu-latest-stable- | |
ubuntu-latest- | |
- 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 |