diff --git a/.github/actions/tests_ci/action.yml b/.github/actions/tests_ci/action.yml index 9aedcd5..30af9ab 100644 --- a/.github/actions/tests_ci/action.yml +++ b/.github/actions/tests_ci/action.yml @@ -13,16 +13,15 @@ runs: uses: actions/checkout@v2 - name: Set up Python ๐Ÿ - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: "3.10" - name: Install dependencies ๐Ÿ—๏ธ shell: bash run: | - pip install poetry - poetry install --no-lock + pip install pylint - - name: Run tests ๐Ÿงช + - name: Evaluate the linter โ˜ข๏ธ shell: bash - run: poetry run pytest + run: pylint