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'
|
2020-07-16 02:39:28 +03:00
|
|
|
- 'tauri/**'
|
|
|
|
- 'tauri-utils/**'
|
|
|
|
- 'tauri-api/**'
|
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 }}
|
2020-07-06 04:13:50 +03:00
|
|
|
args: --all-targets -- -D warnings
|
|
|
|
name: workspace
|
|
|
|
env:
|
|
|
|
TAURI_DIST_DIR: ${{ runner.workspace }}/tauri/tauri/examples/communication/dist
|
|
|
|
TAURI_DIR: ${{ runner.workspace }}/tauri/tauri/examples/communication/src-tauri
|
|
|
|
- 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
|
|
|
|
|
|
|
|
core_clippy_check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
feature: [embedded-server, no-server, all-api]
|
|
|
|
|
|
|
|
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
|
2020-02-19 18:02:19 +03:00
|
|
|
env:
|
2020-06-15 05:36:35 +03:00
|
|
|
TAURI_DIST_DIR: ${{ runner.workspace }}/tauri/tauri/examples/communication/dist
|
|
|
|
TAURI_DIR: ${{ runner.workspace }}/tauri/tauri/examples/communication/src-tauri
|