commit 6e7e562ffdc5397103dc61b14ece831112037df3 parent 7e3498e2a82c52e1f76a698640aca4e586c5b79d Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com> Date: Tue, 16 Apr 2024 17:08:06 -0700 Update GitHub actions Diffstat:
| M | .github/workflows/main.yml | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: uses: actions/setup-python@v2 - name: Install dependencies - run: pip install -r requirements.txt + run: pip3 install -r requirements.txt - name: Run tests with pytest - run: python -m pytest + run: python3 -m pytest