add cspell submodule #3
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: Run CI | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main # Or your default branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # python-version: | |
| # - "3.10" | |
| # - "3.11" | |
| # - "3.12" | |
| # - "3.13" | |
| steps: | |
| - uses: szenius/[email protected] | |
| with: | |
| timezoneLinux: "America/Chicago" | |
| timezoneMacos: "America/Chicago" | |
| timezoneWindows: "Central Standard Time" | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # - name: Install Python dependencies | |
| # if: contains( matrix.os, 'ubuntu') | |
| # run: | | |
| # python -m pip install --upgrade pip | |
| # pip install hatch |