WIP: nightly_best_launch — multi-agent nightly derived from oignons2 #5818
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: Installation Test | |
| on: | |
| pull_request: | |
| branches: [ main, 'emerge/**' ] | |
| push: | |
| branches: [ main, 'emerge/**' ] | |
| jobs: | |
| test: | |
| name: ${{ matrix.py }} - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| py: ["3.13", "3.12", "3.11"] | |
| exclude: | |
| - os: macos-latest | |
| py: "3.13" | |
| include: | |
| - os: ubuntu-latest | |
| py: "3.14" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.py }} | |
| - name: Free up disk space (Linux only) | |
| if: runner.os == 'Linux' | |
| run: | | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc | |
| sudo apt-get clean | |
| sudo rm -rf ~/.cache/pip /tmp/* /var/tmp/* | |
| - name: Install pufferlib | |
| run: | | |
| python -m pip install -U pip | |
| pip install -e . |