Prechádzať zdrojové kódy

Merge pull request #138 from dave-tucker/nightly

github: Set toolchain override
Alessandro Decina 3 rokov pred
rodič
commit
317fd576b4
1 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 3 2
      .github/workflows/build-aya-bpf.yml

+ 3 - 2
.github/workflows/build-aya-bpf.yml

@@ -23,11 +23,12 @@ jobs:
       - uses: actions-rs/toolchain@v1
       - uses: actions-rs/toolchain@v1
         with:
         with:
           toolchain: nightly
           toolchain: nightly
+          override: true
 
 
       - uses: Swatinem/rust-cache@v1
       - uses: Swatinem/rust-cache@v1
 
 
       - name: Build
       - name: Build
-        run: cargo +nightly build --verbose
+        run: cargo build --verbose
 
 
       - name: Run tests
       - name: Run tests
-        run: RUST_BACKTRACE=full cargo +nightly test --verbose
+        run: RUST_BACKTRACE=full cargo test --verbose