diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-20 15:59:52 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-20 16:01:42 +0200 |
commit | 68cb4d5482649baca3a79d3fd0e3449a6af0533b (patch) | |
tree | 64a54012efbac76bca6c5f0d8214fdae44743bc8 /.drone.yml | |
parent | fd3a153103029cf7b740e3feeb27eadf5fa4eefc (diff) | |
download | diplonat-68cb4d5482649baca3a79d3fd0e3449a6af0533b.tar.gz diplonat-68cb4d5482649baca3a79d3fd0e3449a6af0533b.zip |
Use the official rust image
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,8 +7,9 @@ workspace: steps: - name: code style - image: rustlang/rust:nightly-slim + image: rust:1.47 commands: + - rustup toolchain install nightly-x86_64-unknown-linux-gnu - rustup component add rustfmt --toolchain nightly - cargo +nightly fmt --all -- --check # - name: code quality |