Add rust dependencies to test jobs
Some checks failed
Run Tests on Code / run-tests (push) Has been cancelled
Some checks failed
Run Tests on Code / run-tests (push) Has been cancelled
This commit is contained in:
parent
50cf8962e3
commit
00099f8950
2 changed files with 18 additions and 4 deletions
|
@ -11,8 +11,15 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Installing Node
|
name: Installing Node and dependencies
|
||||||
run: apt update && apt install -y nodejs
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y \
|
||||||
|
nodejs \
|
||||||
|
libwebkit2gtk-4.0-dev \
|
||||||
|
build-essential \
|
||||||
|
libgtk-3-dev \
|
||||||
|
libayatana-appindicator3-dev \
|
||||||
-
|
-
|
||||||
name: Add Clippy
|
name: Add Clippy
|
||||||
run: rustup component add clippy
|
run: rustup component add clippy
|
||||||
|
|
|
@ -13,8 +13,15 @@ jobs:
|
||||||
container: rust:latest
|
container: rust:latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Installing Node
|
name: Installing Node and dependencies
|
||||||
run: apt update && apt install -y nodejs
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y \
|
||||||
|
nodejs \
|
||||||
|
libwebkit2gtk-4.0-dev \
|
||||||
|
build-essential \
|
||||||
|
libgtk-3-dev \
|
||||||
|
libayatana-appindicator3-dev \
|
||||||
-
|
-
|
||||||
name: Add Clippy
|
name: Add Clippy
|
||||||
run: rustup component add clippy
|
run: rustup component add clippy
|
||||||
|
|
Reference in a new issue