diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 8534442e1..eeab46ad1 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -22,7 +22,15 @@ jobs: - uses: Swatinem/rust-cache@v1 - name: Install Protoc uses: arduino/setup-protoc@v1 - - name: Build docker image - run: docker build . -t near/mpc-recovery + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build Docker image + uses: docker/build-push-action@v4 + with: + context: . + tags: near/mpc-recovery:latest + load: true + cache-from: type=gha + cache-to: type=gha,mode=max - name: Test - run: cargo test -p mpc-recovery-integration-tests \ No newline at end of file + run: cargo test -p mpc-recovery-integration-tests