Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

docbuild.yml 609 B

123456789101112131415161718192021222324252627
  1. name: docs
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - name: Set up environment
  8. run: |
  9. git config --global user.email "test@github.land"
  10. git config --global user.name "GitHub Almighty"
  11. - uses: actions/checkout@v1
  12. - name: Set up Python 3.8
  13. uses: actions/setup-python@v1
  14. with:
  15. python-version: 3.8
  16. - name: Install dependencies
  17. run: |
  18. python -m pip install --upgrade pip
  19. pip install -r requirements-devel.txt
  20. pip install .
  21. - name: Build docs
  22. run: |
  23. make -C docs html