changes important to the library! #6
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: CI Test_LCD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.9, 3.10] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| run: | | |
| curl -sSL https://install.python-poetry.org | python3 - | |
| - name: Add poetry to PATH | |
| run: | | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Update lock file | |
| run: | | |
| poetry update --lock | |
| - name: Instala dependencias | |
| run: | | |
| poetry install | |
| - name: Update dependencies | |
| run: | | |
| poetry update | |
| - name: Ejecuta pruebas | |
| run: | | |
| poetry run test |