Skip to content

changes important to the library! #6

changes important to the library!

changes important to the library! #6

Workflow file for this run

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