Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,29 @@ jobs:
- name: Run GitLab integration tests
if: ${{ env.GITLAB_API_TOKEN != '' }}
run: uv run pytest --run-integration-gitlab -m "integration_gitlab" tests/test_gitlab_integration.py




test-zenodo-connection:
name: Test Zenodo connection
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

- name: Setup uv environment
uses: ./.github/actions/setup-uv
with:
dependency-group: dev

- name: Convert CodeMeta to Zenodo metadata
run: uvx --from eossr eossr-codemeta2zenodo -i codemeta.json --overwrite

- name: Verify Zenodo token before integration tests
run: uvx --from eossr eossr-check-connection-zenodo \
--token "${{ secrets.ZENODO_ACCESS_TOKEN }}" \
--project-dir . \



docs:
name: Docs (Sphinx)
runs-on: ubuntu-latest
Expand Down
Loading