env set property 추가 #224
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 (Ubuntu) | |
| on: [push, pull_request] | |
| jobs: | |
| unit_test: | |
| name: Ubuntu Test - Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.8', '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 |