diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3de8eb30..d3f484e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,15 +51,10 @@ jobs: echo "Free space:" df -h - - name: Set up Python 3.8 - uses: actions/setup-python@v3 - with: - python-version: 3.8 - - name: Install pip dependencies run: | - python -m pip install --upgrade pip - pip install -r scripts/requirements.txt + python3 -m pip install --upgrade pip + python3 -m pip install -r scripts/requirements.txt - name: Install selenium dependecies for r studio run: | @@ -69,7 +64,7 @@ jobs: - name: Install pydoit fixed run: | git clone https://github.com/davidzyx/doit - pip install ./doit + python3 -m pip install ./doit rm -rf ./doit mkdir -p logs manifests touch logs/run.log