Skip to content

Bump up version

Bump up version #49

Workflow file for this run

name: rustfmt
on:
push:
branches:
- main
pull_request:
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Check rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path src-tauri/Cargo.toml -- --check