fix(core): Improving typing for common container usage scenarios #421
Workflow file for this run
This file contains 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
# Contrinuous Integration for the core package | |
name: core | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
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: poetry install --all-extras | |
- name: Run twine check | |
run: poetry build && poetry run twine check dist/*.tar.gz | |
- name: Run tests | |
run: make core/tests | |
- name: Run doctests | |
run: make core/doctests |