Implement task evaluation pipeline #65
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: integration tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .pre-commit-config.yaml | |
| - .github/workflows/code_checks.yml | |
| - .github/workflows/docs_build.yml | |
| - .github/workflows/docs_deploy.yml | |
| - .github/workflows/integration_tests.yml | |
| - '**.py' | |
| - '**.ipynb' | |
| - poetry.lock | |
| - pyproject.toml | |
| - '**.rst' | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - .pre-commit-config.yaml | |
| - .github/workflows/code_checks.yml | |
| - .github/workflows/docs_build.yml | |
| - .github/workflows/docs_deploy.yml | |
| - .github/workflows/integration_tests.yml | |
| - '**.py' | |
| - '**.ipynb' | |
| - poetry.lock | |
| - pyproject.toml | |
| - '**.rst' | |
| - '**.md' | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Install poetry | |
| run: python3 -m pip install --upgrade pip && python3 -m pip install poetry | |
| - uses: actions/setup-python@v5.3.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies and check code | |
| run: | | |
| poetry env use '3.10' | |
| source $(poetry env info --path)/bin/activate | |
| poetry install --with docs,test | |
| coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m | |
| - name: Upload coverage to Codecov | |
| uses: Wandalen/wretry.action@v3.8.0 | |
| with: | |
| action: codecov/codecov-action@v4.0.0 | |
| with: | | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./coverage.xml | |
| name: codecov-umbrella | |
| fail_ci_if_error: true | |
| attempt_limit: 5 | |
| attempt_delay: 30000 |