Skip to content

Updated the Readme with instructions about how to deploy the sample C… #25

Updated the Readme with instructions about how to deploy the sample C…

Updated the Readme with instructions about how to deploy the sample C… #25

Workflow file for this run

name: Format Code
on: push
permissions:
contents: write
defaults:
run:
working-directory: ./
jobs:
code-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Install Dependencies
run: cargo fetch --locked
- name: Run Formatter
run: cargo fmt --all
- name: Commit and Push Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply Prettier formatting
commit_options: '--no-verify'
repository: .
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
commit_author: GitHub Actions <actions@github.com>