From e5b240010d6f566db6271d7029a6069a1b787627 Mon Sep 17 00:00:00 2001 From: Aaron Steele Date: Wed, 17 Jul 2024 13:48:43 -0700 Subject: [PATCH] fix yml --- .github/workflows/ci.yml | 53 ++++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f66e2cb..c4d947b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,29 +24,30 @@ jobs: steps: - uses: actions/checkout@v4 - # - id: auth - # uses: google-github-actions/auth@v2 - # with: - # credentials_json: "${{ secrets.ARTIFACT_REGISTRY_KEY }}" - - # - name: Setup gcloud - # uses: google-github-actions/setup-gcloud@v2 - - # - name: Install system environment and project dependencies - # env: - # GITHUB_CI: "true" - # run: ./install.sh - - # - name: Setup caching for test assets - # uses: actions/cache@v4 - # with: - # path: assets - # key: ${{ runner.os }}-${{ matrix.runner }}-assets - # restore-keys: ${{ runner.os }}-${{ matrix.runner }}-assets - - # - name: Run tests - # uses: prefix-dev/setup-pixi@v0.8.1 - # with: - # pixi-version: v0.25.0 - # cache: true - # run: pixi run all-tests-ci + - id: auth + uses: google-github-actions/auth@v2 + with: + credentials_json: "${{ secrets.ARTIFACT_REGISTRY_KEY }}" + + - name: Setup gcloud + uses: google-github-actions/setup-gcloud@v2 + + - name: Install system environment and project dependencies + env: + GITHUB_CI: "true" + run: ./install.sh + + - name: Setup caching for test assets + uses: actions/cache@v4 + with: + path: assets + key: ${{ runner.os }}-${{ matrix.runner }}-assets + restore-keys: ${{ runner.os }}-${{ matrix.runner }}-assets + + - name: Run tests + uses: prefix-dev/setup-pixi@v0.8.1 + with: + pixi-version: v0.25.0 + manifest-path: pyproject.toml + cache: true + - run: pixi run all-tests-ci