mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
4c9d419eec
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
name: clippy and fmt check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/core-lint-fmt.yml'
|
|
- 'core/**'
|
|
- 'examples/**'
|
|
- 'tauri/**'
|
|
- 'tauri-utils/**'
|
|
- 'tauri-api/**'
|
|
- 'tauri-macros/**'
|
|
- 'tauri-updater/**'
|
|
- 'cli/core/**'
|
|
|
|
jobs:
|
|
workspace_clippy_fmt_check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install webkit2gtk
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y webkit2gtk-4.0
|
|
- run: rustup component add clippy
|
|
- uses: actions-rs/clippy-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --all-targets --all-features -- -D warnings
|
|
name: workspace
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
override: true
|
|
components: rustfmt
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
cli_clippy_fmt_check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: rustup component add clippy
|
|
- uses: actions-rs/clippy-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --manifest-path ./cli/core/Cargo.toml --all-targets --all-features -- -D warnings
|
|
name: cli
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
override: true
|
|
components: rustfmt
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --manifest-path ./cli/core/Cargo.toml --all -- --check
|
|
|
|
core_clippy_check:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
feature: [custom-protocol, api-all]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install webkit2gtk
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y webkit2gtk-4.0
|
|
- run: rustup component add clippy
|
|
- uses: actions-rs/clippy-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --manifest-path ./tauri/Cargo.toml --all-targets --features ${{ matrix.feature }} -- -D warnings
|
|
name: core
|