Add pg_upgrade coverage to Woodie CI #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v4 | |
| - name: 'Install codespell' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends \ | |
| autoconf automake libtool pkg-config \ | |
| libgeos-dev libproj-dev libxml2-dev \ | |
| libxml2-utils docbook-xml docbook-xsl docbook-xsl-ns xsltproc | |
| # Ubuntu's packaged codespell is too old for the skip globs in .codespellrc, | |
| # which makes the job scan generated/vendor trees and fail noisily. | |
| sudo pip install codespell | |
| - name: 'Build & Test' | |
| run: | | |
| codespell --version | |
| ./autogen.sh | |
| ./configure --without-raster --without-topology --without-sfcgal --without-json --without-protobuf | |
| make -C doc comments | |
| codespell --config .codespellrc . |