From 99f599e9105495c729a2811bce56e6b4a9fecb75 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 15 Dec 2020 11:04:54 +0100 Subject: [PATCH] ci: build and check all years --- .github/workflows/rust.yaml | 4 ++-- Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 46960fd..6dbb6d3 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -17,8 +17,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: Lint - run: cargo clippy --verbose + run: cargo clippy --all - name: Build - run: cargo build --verbose + run: cargo build --all - name: Run tests run: make check-all diff --git a/Makefile b/Makefile index ad22f39..edb4c61 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ watch: cargo watch -x clippy check: - cargo test + cargo test --all # run these in release mode because the reason they're ignored is usually that # they take a long time to run check-all: check - cargo test --release -- --ignored + cargo test --all --release -- --ignored .PHONY: watch check check-all