status #1972
This file contains 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: status | |
on: | |
schedule: | |
- cron: '0 */6 * * *' | |
workflow_dispatch: | |
jobs: | |
status: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version-file: pyproject.toml | |
- name: install | |
run: pip install --user . | |
- name: check status of OAI-PMH service | |
run: oai-status | |
- name: retrieve all records in OAI set | |
run: oai-list-records illustrierte.liedflugschriften | |
... |