diff options
| author | bors <bors@rust-lang.org> | 2023-09-29 11:54:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-09-29 11:54:30 +0000 |
| commit | 17521788dd230a112c0853748b214ae76e9c32dc (patch) | |
| tree | 65ceb8232d8f7ffd6a792a9ce5b031b8692c8714 | |
| parent | 50678e0da07a8d3e93733f7fc53c595d81f94925 (diff) | |
| parent | dfeff9f40b77c2a08ea5b454028f2380269f77bf (diff) | |
| download | rust-17521788dd230a112c0853748b214ae76e9c32dc.tar.gz rust-17521788dd230a112c0853748b214ae76e9c32dc.zip | |
Auto merge of #15686 - Veykril:param-list-recov, r=Veykril
Only run tests on linux in pull requests There is little gain from running them on all platforms, they should almost never fail if the linux one pass and if they do, bors will catch it still.
| -rw-r--r-- | .github/workflows/ci.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fb7b4b07f98..6dc339eddf3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -84,6 +84,7 @@ jobs: run: cargo build --quiet ${{ env.USE_SYSROOT_ABI }} - name: Test + if: matrix.os == 'ubuntu-latest' || github.event_name == 'push' run: cargo test ${{ env.USE_SYSROOT_ABI }} -- --nocapture --quiet - name: Switch to stable toolchain |
