From 411a118148211e30d1ea8fc2a56d6b2ec05933e5 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Wed, 3 Mar 2021 13:57:36 +0100 Subject: [PATCH] Avoid testing on nightly to fix a crate issue --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c5565b0c3..e2487f707 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,10 @@ jobs: rust: - stable - beta - - nightly + # We temporarily stop building on nightly just to fix this issue + # https://github.com/bheisler/TinyTemplate/pull/17 + # Reenable it when the fix has been merged. + # - nightly steps: - uses: actions/checkout@v2