From 88ecd7ac0092b4387dd3f1cbf7afed136613edd2 Mon Sep 17 00:00:00 2001 From: jutty Date: Sun, 14 Dec 2025 05:54:32 -0300 Subject: [PATCH] Run a full build in CI instead of just check --- .forgejo/workflows/check.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index 03f5e32..f305c0f 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -11,13 +11,16 @@ jobs: run: rustup component add rustfmt clippy - name: checkout code uses: actions/checkout@v6 + - name: install dependencies run: cargo install --path . - - name: cargo check - run: cargo check --all-targets + - name: cargo build + run: cargo build --all-targets + - name: format run: cargo fmt -- --check - name: lint run: cargo clippy -- -Dwarnings - name: test run: cargo test +