diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbab49b..28c18fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,20 @@ on: jobs: build-and-push: name: Build and Push Docker Image - runs-on: windows-latest + runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 + - name: Cache pip dependencies + uses: actions/cache@v3 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} + restore-keys: | + ${{ runner.os }}-pip- + - name: Log in to DockerHub uses: docker/login-action@v2 with: