From 14cfd8d2149025915ea26eb1b97a007a92c92a47 Mon Sep 17 00:00:00 2001 From: isis lovecruft Date: Mon, 14 Aug 2023 16:51:01 -0700 Subject: [PATCH] Attempt to exclude const generics testing for 1.41 compiler. --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c5fe9e4..71ace64 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,6 +44,8 @@ jobs: args: --no-default-features --features std - name: std const-generics uses: actions-rs/cargo@v1 + exclude: + - rust: 1.41.1 with: command: test args: --no-default-features --features "std const-generics" @@ -54,6 +56,8 @@ jobs: args: --no-default-features --features "std i128" - name: std i128 const-generics uses: actions-rs/cargo@v1 + exclude: + - rust: 1.41.1 with: command: test args: --no-default-features --features "std i128 const-generics"