check whether id_list is instance of str instead of negating other po… #4
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: Continuous Integration | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ main ] | |
| release: | |
| types: [ published ] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| matrix: | |
| runner: ['ubuntu-latest'] | |
| python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ] | |
| include: | |
| - runner: 'ubuntu-22.04' | |
| python-version: '3.7' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install pip dependencies | |
| run: | | |
| pip install --upgrade pip setuptools coveralls | |
| pip install -e '.[tests]' | |
| hepdata-cli --help | |
| - name: Run tests | |
| if: startsWith(matrix.python-version, '3.12') | |
| run: | | |
| pytest --cov=hepdata_cli | |
| - name: Run coveralls | |
| if: startsWith(matrix.python-version, '3.12') | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| COVERALLS_SERVICE_NAME: github | |
| run: | | |
| coveralls | |
| deploy: | |
| needs: test | |
| if: github.event_name == 'release' | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/hepdata-cli | |
| permissions: | |
| id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Build PyPI package | |
| run: | | |
| pip install build | |
| python -m build | |
| - name: Publish distribution to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |