Run 'cargo fmt' to format code #489
Nessun revisore
Etichette
Nessuna etichetta
A: API
A: Backend
A: Federation
A: Front-End
A: I18N
A: Meta
A: Security
Build
C: Bug
C: Discussion
C: Enhancement
C: Feature
Compatibility
Dependency
Design
Documentation
Good first issue
Help welcome
Mobile
Rendering
S: Blocked
S: Duplicate
S: Incomplete
S: Instance specific
S: Invalid
S: Needs Voting/Discussion
S: Ready for review
Suggestion
S: Voted on Loomio
S: Wontfix
Nessuna pietra miliare
Nessun progetto
Nessun assegnatario
1 partecipante
Notifiche
Scadenza
Nessuna scadenza impostata.
Dipendenze
Nessuna dipendenza impostata.
Riferimento: Plume/Plume#489
Caricamento…
Add table
Crea riferimento in una nuova segnalazione
Descrizione non fornita.
Elimina ramo "format-using-cargo-fmt"
L'eliminazione di un ramo è definitiva. Nonostante il ramo eliminato potrebbe continuare ad esistere per un breve periodo di tempo prima di essere realmente eliminato, l'eliminazione NON PUÒ essere annullata in molti casi. Continuare?
Codecov Report
Hey, thank you! Would you want to try to add it to the CI too? (it's fine if you don't, we can totally do that in another PR)
Hi @BaptisteGelez I would like to add it. I am new to Plume project. Can you please point me to where in the .travis.yml file can
cargo fmt
be added?You can probably add a new item at the end of the
jobs
section, in the "test and coverage" stage (I'm not sure if this indication is clear enough, tell me if it is not 😅)given that the usual way to run
rustfmt
is in "check" mode, we can probably run it as first job. and from what i gather,rustfmt
doesn't care about features, and just formats all code? or? did it format the test code, too?If the code isn't formatted ('rustfmt' will exit with 1 if there is an error in formatting - https://github.com/rust-lang/rustfmt#running) then is it still ok to go to the build stage?
Suggestion: We can add a
check
stage which will run before the build stage.@BaptisteGelez @igalic What do you think?
@BaptisteGelez @igalic I tried adding cargo fmt but the CI fails for weird reason.
I tried locally but I didn't get this error - https://travis-ci.org/Plume-org/Plume/jobs/508992511#L584 & nor did it fail for the build before adding
cargo fmt
to travis.yml.I tried to fix that but the build fails - https://travis-ci.org/Plume-org/Plume/jobs/509005663#L589
The build for this PR had passed before adding
cargo fmt
to travis build stages - https://travis-ci.org/Plume-org/Plume/builds/508519598I suggest we can add
cargo fmt
to CI in another PR.OK, no problem. I'll merge this as soon as you'll have reverted the changes to
.travis.yml
. And thank you again for your work. 🙂@BaptisteGelez done. I have updated the PR.