fix nonexist projection #1172
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
name: Unit testing on PR | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- 'packages/**' | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'packages/**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
test-kestrel-core: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./packages/kestrel_core | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python Tools | |
run: pip install --upgrade pip setuptools wheel pytest | |
- name: Install kestrel_core | |
run: pip install . | |
- name: Unit testing | |
run: pytest -vv | |
test-kestrel-interface-opensearch: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./packages/kestrel_interface_opensearch | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python Tools | |
run: pip install --upgrade pip setuptools wheel pytest | |
- name: Install kestrel_core | |
working-directory: ./packages/kestrel_core | |
run: pip install . | |
- name: Install kestrel_interface_opensearch | |
run: pip install . | |
- name: Unit testing | |
run: pytest -vv | |
test-kestrel-interface-sqlalchemy: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./packages/kestrel_interface_sqlalchemy | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python Tools | |
run: pip install --upgrade pip setuptools wheel pytest | |
- name: Install kestrel_core | |
working-directory: ./packages/kestrel_core | |
run: pip install . | |
- name: Install kestrel_interface_sqlalchemy | |
run: pip install . | |
- name: Unit testing | |
run: pytest -vv |