From 53d90c6423af82c3d12273ff4d8083dac7453948 Mon Sep 17 00:00:00 2001 From: Chris Holmes Date: Wed, 13 Sep 2023 19:15:44 -0700 Subject: [PATCH] removed validator job since the validator was removed --- .github/workflows/scripts.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml index e8649f2..c694152 100644 --- a/.github/workflows/scripts.yml +++ b/.github/workflows/scripts.yml @@ -7,27 +7,6 @@ on: pull_request: jobs: - validate-examples: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Set up Python 3.8 - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install validator - run: | - cd validator/python - python -m pip install --no-binary geoparquet_validator . - - - name: Run validator - run: | - for example in $(ls examples/*.parquet); do - echo $example; - geoparquet_validator $example || exit 1; - done test-json-metadata: runs-on: ubuntu-latest