Update main.yml

changed "python -mpip" to "python -m pip"
This commit is contained in:
KRISHNA SANTOSH 2022-07-24 17:26:08 +05:30 committed by GitHub
parent e8f9eb369a
commit 70402cf4b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,5 +50,5 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: python -m pip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}