Skip to content

fixup! chore: prepare release 0.9.0 #34

fixup! chore: prepare release 0.9.0

fixup! chore: prepare release 0.9.0 #34

Workflow file for this run

name: Format
on:
push:
paths:
- '**.rs'
- .github/workflows/format.yml
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
name: πŸ” Analyse using rustfmt
runs-on: ubuntu-latest
steps:
- name: πŸ“š Clone repository
uses: actions/checkout@v2
- name: πŸ“¦ Install stable Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
components: rustfmt
- name: πŸ” Analyse code with rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check