Prechádzať zdrojové kódy

Fix continue-on-error logic

Sam Clements 3 rokov pred
rodič
commit
2a6e21aeef
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      .github/workflows/ci.yml

+ 2 - 2
.github/workflows/ci.yml

@@ -32,7 +32,7 @@ jobs:
   rust-test:
     runs-on: ${{ matrix.os }}
 
-    continue-on-error: ${{ matrix.toolchain != 'stable' || (matrix.toolchain == 'macos-latest' && contains(matrix.features, 'timestamps')) }}
+    continue-on-error: ${{ matrix.toolchain != 'stable' || (matrix.os == 'macos-latest' && contains(matrix.features, 'timestamps')) }}
 
     strategy:
       matrix:
@@ -56,7 +56,7 @@ jobs:
           - {
               os: ubuntu-latest,
               toolchain: nightly,
-              features: "threads,nightly",
+              features: "colors,threads,timestamps,nightly",
             }
 
     steps: