diff --git a/.config/nextest.toml b/.config/nextest.toml deleted file mode 100644 index 6a109e171..000000000 --- a/.config/nextest.toml +++ /dev/null @@ -1,5 +0,0 @@ -[profile.ci] -fail-fast = false - -[profile.ci.junit] -path = "junit.xml" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72ba62e25..333ff7315 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,8 +50,6 @@ jobs: name: Test using Rust stable on ${{ matrix.os }} runs-on: ${{ matrix.os }} - permissions: - id-token: write # required by `getsentry/prevent-action` steps: - name: Checkout sources @@ -59,17 +57,8 @@ jobs: - uses: Swatinem/rust-cache@v2 - - uses: taiki-e/install-action@nextest - - - name: Run tests with nextest - run: cargo nextest run --profile ci --all-features --all-targets - - - name: Upload test results to Sentry Prevent - if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }} - uses: getsentry/prevent-action@v0 - with: - files: target/nextest/ci/junit.xml - disable_search: true + - name: Run cargo test + run: cargo test --workspace --all-features --all-targets MSRV: strategy: