Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continue replacement of TableMeta with ColumnSchema and Logical Types #85

Merged
merged 9 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ on:
- main
workflow_dispatch:
jobs:
unit_tests:
name: ${{ matrix.python_version }} unit tests ${{ matrix.type_of_tests }}
tests:
name: ${{ matrix.python_version }} ${{ matrix.type_of_tests }} tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
type_of_tests: ["unit tests", "integration tests"]
type_of_tests: ["unit", "integration"]
exclude:
- python-version: "3.8"
type_of_tests: "integration tests"
type_of_tests: "integration"
steps:
- uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
Expand All @@ -40,6 +40,7 @@ jobs:
if: (steps.cache.outputs.cache-hit == 'true') && ( github.event.pull_request.title != 'Automated Latest Dependency Updates')
run: python -m pip install --no-dependencies .
- name: Run unit tests
if: ${{ matrix.type_of_tests != 'integration tests' }}
run: make unit-tests
- name: Run integration tests
if: ${{ matrix.type_of_tests == 'integration tests' }}
Expand Down
Loading
Loading