Tweaks 'genConstruction' (tested) #126
Workflow file for this run
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: Pull Request CI | |
| on: | |
| pull_request: | |
| branches: develop | |
| jobs: | |
| test_osut_ubuntu_latest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.x"] | |
| openstudio-version: ["3.6.1", "3.10.0"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel oslg | |
| python -m pip install openstudio==${{ matrix.openstudio-version }} | |
| - name: Run unit tests | |
| run: python -m unittest | |
| test_osut_ubuntu_2204: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.x"] | |
| openstudio-version: ["3.6.1", "3.10.0"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel oslg | |
| python -m pip install openstudio==${{ matrix.openstudio-version }} | |
| - name: Run unit tests | |
| run: python -m unittest |