1
0
Fork 0
mirror of https://github.com/Findus23/rebound-stubs.git synced 2024-09-19 15:13:48 +02:00
rebound-stubs/.github/workflows/action.yaml
2022-03-12 18:12:58 +01:00

16 lines
544 B
YAML

name: typecheck
on: [push]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: 'x64'
- run: git clone https://github.com/hannorein/rebound rebound-src
- run: pip install mypy matplotlib
- run: pip install git+https://github.com/Findus23/retype.git@skip-setters
- run: retype -p rebound -t retyped/rebound rebound-src/rebound
- run: cd retyped && mypy rebound || true