A library that computes the ephemerides.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

33 righe
617 B

  1. name: Checks
  2. on:
  3. push:
  4. branches: [main, features]
  5. pull_request:
  6. branches: [main, features]
  7. jobs:
  8. lint:
  9. name: Code Style
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v5
  13. - uses: actions/setup-python@v6
  14. with:
  15. python-version: 3.x
  16. - uses: psf/black@stable
  17. poetry-check:
  18. runs-on: ubuntu-latest
  19. name: Poetry
  20. steps:
  21. - uses: actions/checkout@v7
  22. - uses: actions/setup-python@v6
  23. with:
  24. python-version: '3.x'
  25. - run: |
  26. pip install -U pip poetry
  27. poetry install
  28. - run: poetry check --strict