optim uniform layout sampling in pure numpy & move global agent rules… #251
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test suite | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request_target: | |
| branches: | |
| - main | |
| jobs: | |
| test-all-platforms: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-latest] | |
| include: | |
| - os: ubuntu-latest | |
| label: linux-x86 | |
| - os: ubuntu-24.04-arm | |
| label: linux-arm | |
| - os: windows-latest | |
| label: windows-x86 | |
| - os: macos-latest | |
| label: macos-arm | |
| runs-on: ${{ matrix.os }} | |
| name: test-${{ matrix.label }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| lfs: true | |
| - name: Setup Pixi | |
| uses: prefix-dev/setup-pixi@v0.9.5 | |
| with: | |
| cache: true | |
| auth-host: prefix.dev | |
| auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | |
| - name: Run tests | |
| run: pixi run -e test test |