diff options
author | HampusM <hampus@hampusmat.com> | 2023-08-15 18:21:05 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-08-15 18:25:09 +0200 |
commit | 9423d67efb161d9a94a7ab6c5899c6bc7ecaee7c (patch) | |
tree | 49f20b575c6bde01f22a964b1328c95207e89f3f | |
parent | 8f990a4477aa126e6bc79b98ba5f6685b0658fe7 (diff) |
ci: remove lints-nightly job
Having to constantly fix new lints is annoying as hell
-rw-r--r-- | .circleci/config.yml | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 09c951a..6a8a4f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -90,31 +90,6 @@ jobs: paths: - ~/.cargo - lints-nightly: - docker: - - image: cimg/rust:1.63.0 - steps: - - checkout - - run: cargo --version - - run: - name: Install Rust nightly - command: rustup install nightly - - run: - name: Setting Rust nightly as default - command: rustup default nightly - - restore_cache: - name: Restore cache of Cargo data - keys: - - cargo-cache - - run: - name: Run Clippy with all features enabled - command: cargo clippy --workspace --all-features - - save_cache: - name: Save cache of Cargo data - key: cargo-cache - paths: - - ~/.cargo - code-style: docker: - image: cimg/rust:1.63.0 @@ -141,6 +116,5 @@ workflows: checks: jobs: - lints-stable - - lints-nightly - code-style |