change default variations #17
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: Testing | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - "main" | |
| push: | |
| branches: | |
| - "main" | |
| create: | |
| branches: | |
| - "main" | |
| tags: | |
| - "**" | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| # Checkout repository | |
| - name: Checking Out Repository | |
| uses: actions/checkout@v4 | |
| # Setup Python | |
| - name: Setup Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| cache: "pip" | |
| # Install dependencies | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev]" | |
| # Run Tests | |
| - name: Run Tests with Coverage | |
| run: | | |
| pytest stable_worldmodel/ \ | |
| --verbose \ | |
| --cov=stable_worldmodel \ | |
| --cov-report=term-missing:skip-covered \ | |
| --cov-report=xml \ | |
| --cov-report=html \ | |
| --junitxml=pytest.xml \ | |
| --cov-report=term | tee pytest-coverage.txt | |
| # Post Coverage Comment on PR | |
| - name: Pytest coverage comment | |
| if: github.event_name == 'pull_request' | |
| uses: MishaKav/pytest-coverage-comment@main | |
| with: | |
| pytest-coverage-path: ./pytest-coverage.txt | |
| junitxml-path: ./pytest.xml | |
| # Upload Coverage Report as Artifact | |
| - name: Upload coverage HTML report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-report | |
| path: htmlcov/ |