fix line scaling #166
This file contains hidden or 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: run all tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| name: run tests | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: python | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: install requirements | |
| run: | | |
| pip install wheel | |
| pip install mypy | |
| pip install . | |
| - name: mypy | |
| run: | | |
| mypy --config-file mypy.ini openglider | |
| - name: test | |
| run: | | |
| python testall.py |