Add pipelines rules to build && test a channel quickly

pull/12/head
Florian Dehau 7 years ago
parent c2ad42b509
commit 06a3c9346b

@ -123,3 +123,14 @@ watch-test: ## Watch files changes and run the tests if any
watch-doc: ## Watch file changes and rebuild the documentation if any
watchman-make -p 'src/**/*.rs' -t doc
# ================================= Pipelines =================================
stable: RUST_CHANNEL = stable
stable: build test
beta: RUST_CHANNEL = beta
beta: build test
nightly: RUST_CHANNEL = nightly
nightly: build lint test

Loading…
Cancel
Save