tinty 0.16.0

Change the theme of your terminal, text editor and anything else with one command!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Stage 1: Build Environment
FROM rust:1.77.2 AS base
WORKDIR /usr/src/tinty
COPY . .
RUN cargo build --release

# Stage 2: Run lint and tests
FROM base AS tests
RUN rustup component add clippy rustfmt
RUN cargo clippy -- -D warnings
RUN cargo fmt --all -- --check
ENV RUST_TEST_THREADS=1

CMD ["cargo", "test", "--release", "--", "--nocapture"]