diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c60296707..d29d6fc61 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -91,7 +91,9 @@ jobs: # failure only occurs on a particular version. fail-fast: false matrix: - rust: [stable, beta, nightly] + # Nightly has been removed due to regressions, we can re-enable once the issue below is resolved. + # Related issue: https://github.com/rust-lang/rust/issues/99536 + rust: [stable, beta] steps: - uses: actions/checkout@master - name: "install Rust ${{ matrix.rust }}"