Skip to content

Create the Character Selection Screen #29

Create the Character Selection Screen

Create the Character Selection Screen #29

Workflow file for this run

name : Rust Format Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Run rustfmt on Tauri App
working-directory: ./src-tauri
run: cargo fmt -- --check
- name: Run rustfmt on Types Crate
working-directory: ./src-types
run: cargo fmt -- --check