Add rustup call to setup formatting

This commit is contained in:
Juno Takano 2025-12-13 18:26:44 -03:00
commit 3fbd7185a2

View file

@ -11,7 +11,9 @@ jobs:
git clone https://codeberg.org/jutty/en git clone https://codeberg.org/jutty/en
cd en cd en
- name: formatting - name: formatting
run: cargo fmt -- --check run: |
rustup component add rustfmt
cargo fmt -- --check
- name: lints - name: lints
run: cargo clippy -- -Dwarnings run: cargo clippy -- -Dwarnings
- name: cargo - name: cargo