Add event_source_url tests #17
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: Param builder Python CI | |
| on: | |
| push: | |
| paths: | |
| - 'python/**' | |
| tags-ignore: | |
| - 'v*' # Ignores all tag pushes | |
| branches: | |
| - '**' | |
| pull_request: | |
| paths: | |
| - 'python/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: python/capi_param_builder | |
| strategy: | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11'] | |
| name: CI Test on Python ${{ matrix.python-version }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Unit test | |
| run: | | |
| python3 -m unittest discover -s test -t . -p 'test_*.py' -v |