Add rust dependencies to test jobs
Some checks failed
Run Tests on Code / run-tests (push) Has been cancelled

This commit is contained in:
Neshura 2023-12-19 23:28:14 +01:00
parent 50cf8962e3
commit 00099f8950
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 18 additions and 4 deletions

View file

@ -11,8 +11,15 @@ jobs:
runs-on: docker
steps:
-
name: Installing Node
run: apt update && apt install -y nodejs
name: Installing Node and dependencies
run: |
apt update
apt install -y \
nodejs \
libwebkit2gtk-4.0-dev \
build-essential \
libgtk-3-dev \
libayatana-appindicator3-dev \
-
name: Add Clippy
run: rustup component add clippy

View file

@ -13,8 +13,15 @@ jobs:
container: rust:latest
steps:
-
name: Installing Node
run: apt update && apt install -y nodejs
name: Installing Node and dependencies
run: |
apt update
apt install -y \
nodejs \
libwebkit2gtk-4.0-dev \
build-essential \
libgtk-3-dev \
libayatana-appindicator3-dev \
-
name: Add Clippy
run: rustup component add clippy