循環のラストオーブで毎晩版を使う


循環のルストブを使うときデフォルトでは安定版になっています.最近の錆のバージョンで Clippyを使うときは毎晩に切り替える必要があります.
特別な用意されたコマンドは実装されていないので普通に書きます.
# .ciecleci/config.yml

version: 2.1

orbs:
  rust: circleci/[email protected]

jobs:
  lint:
    docker:
      - image: circleci/rust:latest
    steps:
      - checkout
      - run: rustup default nightly
      - rust/clippy

workflows:
  version: 2
  test:
    jobs:
      - lint

https://circleci.com/developer/orbs/orb/circleci/rust