From 7d26a36ab7f93577849399c317f7ebe1d6096e44 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 6 Aug 2023 02:16:32 -0500 Subject: [PATCH] workflow: specify python3 --- .forgejo/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index 5515969..36146db 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v3 - name: Install Python Deps run: | - python -m pip install --upgrade pip + python3 install --upgrade pip pip install -r requirements.txt - name: Analysing the code with pylint run: |