Skip to content

Update README.md

Update README.md #53

Workflow file for this run

name: Formatting
on:
push:
branches: ["master", "ci"]
pull_request:
branches: ["master", "ci"]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create Dist Directory
run: mkdir dist
- name: Setup Environment
run: sudo ./scripts/setup.sh
- name: Check Format
run: cargo fmt --all -- --check
working-directory: src-tauri
- name: Check Warnings
run: cargo clippy -- -D warnings
working-directory: src-tauri