fix(all): lint and format #352
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
name: Check backend | |
on: | |
push: | |
paths: | |
- '.github/workflows/backend.yml' | |
- 'src-tauri/**' | |
pull_request: | |
paths: | |
- '.github/workflows/backend.yml' | |
- 'src-tauri/**' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/cargo@v1 | |
name: Rustfmt check | |
with: | |
command: fmt | |
args: --manifest-path ./src-tauri/Cargo.toml --all -- --check | |
# also check updater | |
- uses: actions-rs/cargo@v1 | |
name: Rustfmt check updater | |
with: | |
command: fmt | |
args: --manifest-path ./updater/Cargo.toml --all -- --check | |
clippy: | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [windows-latest, ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.7 | |
- name: Install Linux dependencies | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: src-tauri | |
- name: Build frontend (creates '../dist') | |
run: pnpm install && pnpm shupdate && pnpm prebuild && pnpm build | |
- uses: actions-rs/clippy-check@v1 | |
name: Clippy check | |
with: | |
name: clippy (${{ runner.os }}) | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --manifest-path ./src-tauri/Cargo.toml --no-default-features -- -D warnings | |
# Also clippy check updater | |
- uses: actions-rs/clippy-check@v1 | |
name: Clippy check updater | |
with: | |
name: clippy (${{ runner.os }}) | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --manifest-path ./updater/Cargo.toml --no-default-features -- -D warnings |