Skip to content

refactor: standardize Google OAuth secret name #65

refactor: standardize Google OAuth secret name

refactor: standardize Google OAuth secret name #65

Workflow file for this run

name: Rust fmt
on:
push:
branches: [main]
paths:
- "apps/desktop/src-tauri/**"
pull_request:
branches: [main]
paths:
- "apps/desktop/src-tauri/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --check
working-directory: apps/desktop/src-tauri