Skip to content

Fix/update to rust 1.8 version 2024 #795

Fix/update to rust 1.8 version 2024

Fix/update to rust 1.8 version 2024 #795

Workflow file for this run

name: Format Check
on:
push:
pull_request:
jobs:
fmt-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
components: clippy
override: true
profile: minimal
toolchain: nightly
- name: Check code formatting
run: cargo fmt -- --check --verbose