[SCM] PostGIS branch master updated. 3.6.0rc2-228-geb73a244e

git at osgeo.org git at osgeo.org
Thu Nov 27 23:02:15 PST 2025


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  eb73a244e131c0e362e2b4b3f8257c9ce4da3057 (commit)
       via  d8f5161a7c09b20a28c4bac9a0bc5c4817bbc0e5 (commit)
      from  a18de16c6c7dba9055ffd4bbd5823aa7a1a5aae7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit eb73a244e131c0e362e2b4b3f8257c9ce4da3057
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Nov 27 19:22:45 2025 -0500

    Add codespell check
    Show codespell version

diff --git a/.codespell.ignore b/.codespell.ignore
index 7e1e0cfa0..18f50ff2f 100644
--- a/.codespell.ignore
+++ b/.codespell.ignore
@@ -12,6 +12,7 @@ hel
 hist
 infor
 inout
+koordinates
 larg
 mater
 mis
@@ -22,6 +23,7 @@ nempty
 ot
 outin
 outout
+pease
 pixelx
 raison
 rin
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 000000000..302aa40a1
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,29 @@
+name: Codespell Check
+
+on:
+  push:
+    branches-ignore:
+      - 'main'
+  pull_request: ~
+
+jobs:
+  linux:
+
+    runs-on: ubuntu-latest
+
+    name: "CI Codespell"
+
+
+    steps:
+
+    - name: 'Check Out'
+      uses: actions/checkout at v4
+
+    - name: 'Install codespell'
+      run: |
+        sudo pip install codespell
+
+    - name: 'Build & Test'
+      run: |
+        codespell --version
+        codespell -I ".codespell.ignore"

commit d8f5161a7c09b20a28c4bac9a0bc5c4817bbc0e5
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Nov 27 18:52:26 2025 -0500

    GHA: Remove pg13 testing, add a line for latest

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c5d9abf47..58a876f08 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -29,12 +29,10 @@ jobs:
         #- { tag: pg13-geos39-gdal31-proj71, mode: tests }
         #- { tag: pg13-geos39-gdal31-proj71, mode: coverage }
         #- { tag: pg13-geos39-gdal31-proj71, mode: usan_gcc }
-        - { tag: pg13-clang-geos39-gdal31-proj71, mode: usan_clang }
+        #- { tag: pg14-clang-geos39-gdal31-proj71, mode: usan_clang }
         # Run tests with different dependency combinations
-        # - { tag: latest, mode: tests }
+        - { tag: latest, mode: tests }
         - { tag: latest, mode: garden }
-        - { tag: pg13-geos38-gdal31-proj71, mode: tests }
-        - { tag: pg12-geos38-gdal30-proj611, mode: tests }
 
     runs-on: ubuntu-latest
     steps:

-----------------------------------------------------------------------

Summary of changes:
 .codespell.ignore               |  2 ++
 .github/workflows/ci.yml        |  6 ++----
 .github/workflows/codespell.yml | 29 +++++++++++++++++++++++++++++
 3 files changed, 33 insertions(+), 4 deletions(-)
 create mode 100644 .github/workflows/codespell.yml


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list