Document the source code for data store and metadata store clients (#57) #52
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/**' | |
| workflow_call: | |
| workflow_dispatch: | |
| jobs: | |
| check_analyzers: | |
| name: Check analyzers for ni.datastore | |
| uses: ./.github/workflows/check_ni_datastore.yml | |
| check_examples: | |
| name: Check analyzers for examples | |
| uses: ./.github/workflows/check_examples.yml | |
| check_docs: | |
| name: Check docs for ni.datastore | |
| uses: ./.github/workflows/check_docs.yml | |
| run_unit_tests: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest] | |
| python-version: [3.9, '3.10', 3.11, 3.12, 3.13] | |
| name: Run unit tests | |
| uses: ./.github/workflows/run_unit_tests.yml | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| os: ${{ matrix.os }} |