diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0a658b3..02e2874 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -10,8 +10,6 @@ jobs: steps: - name: ๐Ÿ“ฆ Checkout repository uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: ๐Ÿฆ€ Setup Rust cache uses: https://github.com/Swatinem/rust-cache@v2 @@ -22,4 +20,13 @@ jobs: run: cargo clippy --all --features=rss -- -D warnings - name: ๐Ÿงช Test - run: cargo test --features=rss --workspace + run: cargo nextest run --config-file ~/.config/nextest.toml --profile ci --features rss --workspace + + - name: ๐Ÿ’Œ Upload test report + if: always() + uses: https://code.forgejo.org/forgejo/upload-artifact@v4 + with: + name: test + path: | + target/nextest/ci/junit.xml + rustypipe_reports/*