adds pylint to CI and a link to the original IAU SOFA pn p-vector fun… #28
Workflow file for this run
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: CI | |
on: | |
- push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
- '3.14' | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install numpy pytest | |
- run: pytest | |
lints: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install numpy pylint | |
- run: pylint vondrak | |
docs: | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install -r requirements.txt | |
- run: sudo apt install pandoc | |
- run: jupyter nbconvert examples.ipynb --to rst | |
working-directory: ./vondrak/docs | |
- run: make html | |
working-directory: ./vondrak/docs |