Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
misohu committed Feb 15, 2024
1 parent 45ad8c2 commit 585b8a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install python3-pip tox
run: python3 -m pip install tox
- name: Run linters
run: tox -e lint

Expand All @@ -21,7 +21,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install python3-pip tox
run: python -m pip install tox
- name: Run tests
run: tox -e unit

Expand All @@ -39,7 +39,7 @@ jobs:
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo apt update -y
VERSION=3.10
sudo apt install python3.10 python3.10-distutils python$3.10-venv -y
sudo apt install python3.10 python3.10-distutils python3.10-venv -y
wget https://bootstrap.pypa.io/get-pip.py
python3.10 get-pip.py
python3.10 -m pip install tox
Expand Down

0 comments on commit 585b8a4

Please sign in to comment.