From d52183c306e1ac01ab2beeba195aafd0d126ed6d Mon Sep 17 00:00:00 2001 From: cakevm Date: Thu, 3 Oct 2024 11:30:15 +0200 Subject: [PATCH] test --- .github/workflows/loom.yml | 6 ++---- Makefile | 6 ++++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/loom.yml b/.github/workflows/loom.yml index cc61a56e..63f409b4 100644 --- a/.github/workflows/loom.yml +++ b/.github/workflows/loom.yml @@ -60,11 +60,9 @@ jobs: deny: #if: github.repository == 'dexloom/loom' - name: cargo deny + name: make deny-check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: EmbarkStudios/cargo-deny-action@v1 - with: - command: check - arguments: --all-features \ No newline at end of file + - run: make deny-check \ No newline at end of file diff --git a/Makefile b/Makefile index aad1b4df..56c90692 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,12 @@ clippy: fmt-check: cargo +stable fmt --all --check +# check licences +.PHONY: deny-check +fmt-check: + cargo deny --all-features check + + # check files format with fmt and clippy .PHONY: pre-release pre-release: