Ulimit in macos tests

This commit is contained in:
Igor Katson 2025-02-27 11:06:01 +00:00
parent a16247aadd
commit 3c28c2fdf7
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -37,9 +37,12 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
prefix-key: v1
- name: Run tests (whole workspace, including desktop)
if: ${{ matrix.os != 'ubuntu-latest' }}
- name: Run tests
if: ${{ matrix.os == 'windows-latest' }}
run: cargo test --workspace
- name: Run tests
if: ${{ matrix.os == 'macos-latest' }}
run: ulimit -n unlimited && cargo test --workspace
- name: Run tests
if: ${{ matrix.os == 'ubuntu-latest' }}
run: cargo test