From e1811ae4e9b0ed808e57cd8fb19fa8bec027e7e6 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Wed, 18 Mar 2026 01:22:03 +1000 Subject: [PATCH] [CI] Add basic checks workflow with one job Apache Airflow uses this same basic check: https://github.com/apache/airflow/blob/3c5348fd05be80738c71eb075956f87e7d5fcec3/.github/workflows/basic-tests.yml#L293 We don't have much test coverage running on Windows. Should be quick to run on the GitHub CI refs https://github.com/apache/sedona/pull/2753 --- .github/workflows/basic-checks.yml | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/basic-checks.yml diff --git a/.github/workflows/basic-checks.yml b/.github/workflows/basic-checks.yml new file mode 100644 index 0000000000..c8ecce34cb --- /dev/null +++ b/.github/workflows/basic-checks.yml @@ -0,0 +1,41 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Basic Tests + +on: + push: + branches: + - main + pull_request: + branches: + - '*' + +permissions: + contents: read + +jobs: + test-git-clone-on-windows: + timeout-minutes: 5 + name: 'Test git clone on Windows' + runs-on: ['windows-latest'] + steps: + - name: 'Checkout ${{ github.ref }} ( ${{ github.sha }} )' + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + fetch-depth: 2 + persist-credentials: false