From c6297b9157a1ed91bd6052628d3a074c5c76fed9 Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 19 Dec 2023 22:21:52 +0100 Subject: [PATCH] Install clippy during Actions --- .forgejo/workflows/build+release.yml | 3 +++ .forgejo/workflows/test.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index de71296..537c486 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -14,6 +14,9 @@ jobs: - name: Installing Node run: apt update && apt install -y nodejs + - + name: Add Clippy + run: rustup component add clippy - name: Checking Out Repository Code uses: https://code.forgejo.org/actions/checkout@v3 diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 5cd6caa..2d9723b 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -15,6 +15,9 @@ jobs: - name: Installing Node run: apt update && apt install -y nodejs + - + name: Add Clippy + run: rustup component add clippy - name: Checking Out Repository Code uses: https://code.forgejo.org/actions/checkout@v3