From 68ab495a09e7b902f39c613463d4fed597f84401 Mon Sep 17 00:00:00 2001 From: santiagosayshey Date: Sat, 1 Jun 2024 11:13:45 +0930 Subject: [PATCH] fix. Use py3 for running regex script --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b78ce8..63cbe00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,8 +20,8 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + python3 -m pip install --upgrade pip pip install colorama - name: Run regex tests - run: python ./tests/regex.py \ No newline at end of file + run: python3 tests/regex.py \ No newline at end of file