updated version number and copyright date #50
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: CI Testing | |
| # This pipeline builds and tests the project. | |
| # Commits that pass this workflow can be assumed to be functionally correct, | |
| # per the current state of the mock responses registry. | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| build-and-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| os: [ubuntu-latest, windows-latest] | |
| name: Build ${{ matrix.os }}-py${{ matrix.python-version }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build the project | |
| uses: ./.github/actions/build-project | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run unit tests | |
| shell: bash | |
| run: | | |
| make check |