mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 09:11:55 +03:00
39dd3a82bf
Co-authored-by: nothingismagick <denjell@sfosc.org>
26 lines
617 B
YAML
26 lines
617 B
YAML
name: clippy check
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- master
|
|
- dev
|
|
|
|
jobs:
|
|
clippy_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 }}
|
|
env:
|
|
TAURI_DIST_DIR: ${{ runner.workspace }}/tauri/tauri/test/fixture/dist
|
|
TAURI_DIR: ${{ runner.workspace }}/tauri/tauri/test/fixture/src-tauri
|