HERMES run for zyzzyxdonta on main #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
| # SPDX-FileCopyrightText: 2026 Helmholtz-Zentrum Dresden - Rossendorf e.V. (HZDR) | |
| # SPDX-FileContributor: David Pape | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: Run HERMES Workflow | |
| run-name: HERMES run for ${{ github.actor }} on ${{ github.ref_name }} | |
| on: [push, pull_request] | |
| jobs: | |
| hermes-workflow-steps: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Print Python version | |
| run: python -c "import sys; print(sys.version)" | |
| - name: Install package | |
| run: pip install -e . | |
| - run: hermes clean || (cat hermes.log && false) | |
| - run: hermes harvest || (cat hermes.log && false) | |
| - run: hermes process || (cat hermes.log && false) | |
| - run: hermes curate || (cat hermes.log && false) |