Merge pull request #59 from LUXROBO/feature/rgb_example_extend #222
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: Unit Test (macOS) | |
| on: [push, pull_request] | |
| jobs: | |
| unit_test: | |
| name: macOS Test - Python ${{ matrix.python-version }} | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Python 3.8 excluded: pyobjc-core requires Python 3.9+ | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Display Python version | |
| run: python --version | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --upgrade pytest "pytest-cov<5.0" "coverage<8.0" | |
| pip install -r requirements.txt | |
| - name: Run unit tests with unittest | |
| run: python -m unittest | |
| - name: Run pytest tests | |
| run: python -m pytest tests/task/ tests/module/input_module/ tests/module/output_module/ -v |