2021-04-11 01:09:09 +03:00
|
|
|
# Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
name: clippy and fmt check
|
2020-02-09 22:06:13 +03:00
|
|
|
|
|
|
|
on:
|
2020-07-15 14:14:11 +03:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2020-07-16 02:05:07 +03:00
|
|
|
- '.github/workflows/core-lint-fmt.yml'
|
2021-03-13 05:49:55 +03:00
|
|
|
- 'core/**'
|
|
|
|
- 'examples/**'
|
2021-04-12 07:59:25 +03:00
|
|
|
- 'tooling/cli.rs/**'
|
2020-02-09 22:06:13 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-07-06 04:13:50 +03:00
|
|
|
workspace_clippy_fmt_check:
|
2020-02-09 22:06:13 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-02-19 18:02:19 +03:00
|
|
|
|
2020-02-09 22:06:13 +03:00
|
|
|
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 }}
|
2021-01-30 19:50:26 +03:00
|
|
|
args: --all-targets --all-features -- -D warnings
|
2020-07-06 04:13:50 +03:00
|
|
|
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
|
|
|
|
|
2021-01-30 18:15:47 +03:00
|
|
|
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 }}
|
2021-04-12 07:59:25 +03:00
|
|
|
args: --manifest-path ./tooling/cli.rs/Cargo.toml --all-targets --all-features -- -D warnings
|
2021-01-30 18:15:47 +03:00
|
|
|
name: cli
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
2021-04-12 07:59:25 +03:00
|
|
|
args: --manifest-path ./tooling/cli.rs/Cargo.toml --all -- --check
|
2021-01-30 18:15:47 +03:00
|
|
|
|
2020-07-06 04:13:50 +03:00
|
|
|
core_clippy_check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-02-26 04:07:30 +03:00
|
|
|
feature: [custom-protocol, api-all]
|
2020-07-06 04:13:50 +03:00
|
|
|
|
|
|
|
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 }}
|
2021-04-08 19:22:20 +03:00
|
|
|
args: --manifest-path ./core/tauri/Cargo.toml --all-targets --features ${{ matrix.feature }} -- -D warnings
|
2020-07-06 04:13:50 +03:00
|
|
|
name: core
|