We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe72781 commit 976ae54Copy full SHA for 976ae54
1 file changed
.github/workflows/test.yml
@@ -41,18 +41,6 @@ jobs:
41
steps:
42
- uses: actions/checkout@v6
43
44
- - name: Verify example datafusion version
45
- run: |
46
- MAIN_VERSION=$(grep -A 1 "name = \"datafusion-common\"" Cargo.lock | grep "version = " | head -1 | sed 's/.*version = "\(.*\)"/\1/')
47
- EXAMPLE_VERSION=$(grep -A 1 "name = \"datafusion-common\"" examples/datafusion-ffi-example/Cargo.lock | grep "version = " | head -1 | sed 's/.*version = "\(.*\)"/\1/')
48
- echo "Main crate datafusion version: $MAIN_VERSION"
49
- echo "FFI example datafusion version: $EXAMPLE_VERSION"
50
-
51
- if [ "$MAIN_VERSION" != "$EXAMPLE_VERSION" ]; then
52
- echo "❌ Error: FFI example datafusion versions don't match!"
53
- exit 1
54
- fi
55
56
- name: Setup Python
57
uses: actions/setup-python@v6
58
with:
0 commit comments