Add lint front + rollback back lint #360
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: Check pip install package with multiple version of python | |
| on: [push, pull_request] | |
| jobs: | |
| check-requirements-install: | |
| strategy: | |
| matrix: | |
| python-version: [ "3.9", "3.11" ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - run: pip install -r requirements.txt |