diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3316c55..96dad894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,10 +55,7 @@ jobs: override: true - name: Build documentation - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd docs && make -j$(nproc) + run: cd docs && make -j$(nproc) examples: name: Examples @@ -77,10 +74,7 @@ jobs: override: true - name: Doctest - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd doctest && cargo check + run: cd doctest && cargo check rustfmt: name: Rustfmt diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 8ff61674..6da913d6 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -33,10 +33,7 @@ jobs: override: true - name: Build documentation - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd docs && make -j$(nproc) + run: cd docs && make -j$(nproc) - name: Deploy uses: peaceiris/actions-gh-pages@v3