diff --git a/.github/workflows/persistence-performance.yml b/.github/workflows/persistence-performance.yml index be999636..342b0b2d 100644 --- a/.github/workflows/persistence-performance.yml +++ b/.github/workflows/persistence-performance.yml @@ -18,13 +18,13 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.10" - name: Install requirements run: | - pip install .[tests] + pip install -e .[tests] pip --version pip list - name: Run persistence performance checks - run: python scripts/check_persistence_performance.py + run: python3.10 scripts/check_persistence_performance.py - name: Run file size checks - run: python scripts/check_file_size.py + run: python3.10 scripts/check_file_size.py