Skip to content

Commit

Permalink
Simplify CI
Browse files Browse the repository at this point in the history
  • Loading branch information
autozimu committed Jul 19, 2020
1 parent 9de13bc commit 468aaf9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml
Expand Up @@ -5,20 +5,6 @@ general:
- /binary-.*/

jobs:
lint:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run: |
rustup component add clippy
cargo clippy --all -- --deny warnings
format:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run: cargo fmt -- --check
build:
docker:
- image: autozimu/languageclientneovim
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -2,21 +2,21 @@ all: release

dev: build fmt clippy vint

ci: vint python-lint test integration-test
cargo fmt -- --check
ci: vint python-lint check-fmt-and-clippy test integration-test

check:
cargo check

check-fmt-and-clippy: check
cargo fmt -- --check
cargo clippy --all -- --deny warnings

build:
cargo build

fmt:
cargo fmt

clippy:
cargo clippy

vint:
vint autoload plugin

Expand Down

0 comments on commit 468aaf9

Please sign in to comment.