Skip to content

Commit

Permalink
Revert "Use cache (#83)" (#84)
Browse files Browse the repository at this point in the history
This reverts commit e9edf48.
  • Loading branch information
yuyawk authored Nov 6, 2024
1 parent e9edf48 commit cdb3855
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Look up cache
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.cache
key: ${{ github.repository }}-${{ github.job }}-${{ matrix.bazel-version }}-${{ runner.os }}-${{ hashFiles('.bazelrc', 'WORKSPACE', 'MODULE.bazel') }}
restore-keys: ${{ github.repository }}-${{ github.job }}-${{ matrix.bazel-version }}-${{ runner.os }}-
- name: Set up
uses: ./.github/actions/setup
with:
Expand Down Expand Up @@ -69,12 +63,6 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Look up cache
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/examples/.cache
key: ${{ github.repository }}-${{ github.job }}-${{ matrix.bazel-version }}-${{ runner.os }}-${{ hashFiles('.bazelrc', 'WORKSPACE', 'MODULE.bazel', 'examples/.bazelrc', 'examples/WORKSPACE', 'examples/MODULE.bazel') }}
restore-keys: ${{ github.repository }}-${{ github.job }}-${{ matrix.bazel-version }}-${{ runner.os }}-
- name: Set up
uses: ./.github/actions/setup
with:
Expand All @@ -85,23 +73,15 @@ jobs:

style-check:
runs-on: ubuntu-latest
env:
bazel-version: 7.x
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Look up cache
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.cache
key: ${{ github.repository }}-${{ github.job }}-${{ env.bazel-version }}-${{ runner.os }}-${{ hashFiles('.bazelrc', 'WORKSPACE', 'MODULE.bazel') }}
restore-keys: ${{ github.repository }}-${{ github.job }}-${{ env.bazel-version }}-${{ runner.os }}-
- name: Set up
uses: ./.github/actions/setup
with:
bazel-version: ${{ env.bazel-version }}
bazel-version: 7.x
- name: Run formatters and linters
shell: bash
run: ./development/cli/style_check.bash
Expand Down

0 comments on commit cdb3855

Please sign in to comment.