diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 55230b9..294ae91 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -15,14 +15,11 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: "3.10" - # Optional - x64 or x86 architecture, defaults to x64 - architecture: 'x64' - - - name: Install dependencies - run: | + cache: 'pip' # caching pip dependencies + - run: | python -m pip install --upgrade pip pip install pytest pytest-cov if [ -f docker/python/requirements.txt ]; then pip install -r docker/python/requirements.txt; fi