From fc82bea5f42d808cdae56683a8760d75cc2642b6 Mon Sep 17 00:00:00 2001 From: cduvray Date: Tue, 4 Jul 2023 08:20:47 +0200 Subject: [PATCH] build: disable temporarily nightly tests - to avoid "error[E0635]: unknown feature `proc_macro_span_shrink`" when testing with nightly --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68577ef..8bb0007 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - build: [pinned, stable, nightly] + build: [pinned, stable] include: - build: pinned os: ubuntu-22.04 @@ -41,9 +41,9 @@ jobs: - build: stable os: ubuntu-22.04 rust: stable - - build: nightly - os: ubuntu-22.04 - rust: nightly + # - build: nightly + # os: ubuntu-22.04 + # rust: nightly steps: - uses: actions/checkout@v3 - name: Install Rust