add cargo-nextest
Some checks failed
Build and Push / build_and_publish_docker_image (push) Failing after 1m39s

This commit is contained in:
Mitchell Marino 2026-05-22 15:28:02 -05:00
parent 0ab1cdf93b
commit 1574fa1454
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:24.4-bullseye
FROM node:26.2-bullseye
# Install necessary packages
RUN apt-get update && \
@ -29,8 +29,8 @@ ENV PATH="/root/.cargo/bin:${PATH}"
# Add clippy and rustfmt
RUN rustup component add clippy rustfmt
# Install cargo-leptos and sqlx-cli
RUN cargo install cargo-leptos@0.2.40 --locked sqlx-cli
# Install cargo-leptos, sqlx-cli and cargo-nextest
RUN cargo install --locked cargo-leptos@0.2.40 sqlx-cli cargo-nextest
# Set up the project directory
WORKDIR /app

View File

@ -11,3 +11,8 @@ The image has the following for use in ci/cd
- node
- docker
- rust
- clippy
- rustfmt
- cargo-leptos
- sqlx-cli
- cargo-nextest