Adding changes to take off transitions code to save memory #111
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: build | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| env: | |
| OS: ${{ matrix.os }} | |
| PYTHON: '3.10.4' | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python | |
| uses: actions/setup-python@master | |
| with: | |
| python-version: 3.10.4 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install . | |
| - name: Test and generate coverage report | |
| run: | | |
| python -m pip install pytest==6.2.5 | |
| python -m pip install pytest-cov | |
| pytest --cov=./ --cov-report=xml |