A library that computes the ephemerides.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
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