Skip to content

Commit

Permalink
👷 CI: Update the CI to install the python version 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoleal20 committed Jul 17, 2024
1 parent 2057ada commit 97c1548
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/actions/tests_ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 97c1548

Please sign in to comment.