diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf900e88c..9b4309d37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,6 +76,11 @@ jobs: uses: actions-rs/cargo@v1 with: { command: ci-full } + - name: doc tests + uses: actions-rs/cargo@v1 + timeout-minutes: 40 + with: { command: ci-doctest } + - name: tests uses: actions-rs/cargo@v1 timeout-minutes: 40 @@ -83,11 +88,6 @@ jobs: command: ci-test args: --skip=test_reading_deflate_encoding_large_random_rustls - - name: doc tests - uses: actions-rs/cargo@v1 - timeout-minutes: 40 - with: { command: ci-doctest } - - name: Generate coverage file if: > matrix.target.os == 'ubuntu-latest'