feat(core): add support for temporalio moduleFeature/implement temporal support #1434
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
| # Continuous Integration for the core package | |
| name: core | |
| env: | |
| UV_FROZEN: "1" # use lock file as is | |
| UV_NO_EDITABLE: "1" # test the build package, not the dev installation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| run-tests-and-coverage: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: ./.github/actions/setup-env | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Python dependencies | |
| run: uv sync --all-extras | |
| - name: Run twine check | |
| run: uv build && uv run twine check dist/* | |
| - name: Run tests | |
| run: make core/tests | |
| - name: "Save coverage artifact" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "coverage-artifact-${{ matrix.python-version}}" | |
| include-hidden-files: true | |
| path: ".coverage.*" | |
| retention-days: 1 | |
| - name: Run doctests | |
| run: make core/doctests | |
| coverage-compile: | |
| needs: "run-tests-and-coverage" | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: ./.github/actions/setup-env | |
| - name: Install Python dependencies | |
| run: uv sync --all-extras | |
| - name: "Download coverage artifacts" | |
| uses: actions/download-artifact@v4 | |
| with: | |
| pattern: "coverage-artifact-*" | |
| merge-multiple: true | |
| - name: Compile coverage | |
| run: make coverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |