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
cd en
- name: formatting
run: cargo fmt -- --check
run: |
rustup component add rustfmt
cargo fmt -- --check
- name: lints
run: cargo clippy -- -Dwarnings
- name: cargo