Skip to content

update cach save key #3

update cach save key

update cach save key #3

Workflow file for this run

name: Run Tests
on: push
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
id: cache
with:
path: ./shellcheck-latest
key: ${{ runner.os }}-shellcheck
- name: Install shellcheck
if: steps.cache.outputs.cache-hit != 'true'
run: sh ./scripts/install_shellcheck.sh
- name: Execute shellcheck
run: ./shellcheck-latest/shellcheck Lock.app/Contents/MacOS/main.command scripts/*
- name: Save to cache
if: steps.cache.outputs.cache-hit != 'true'
id: cache-save
uses: actions/cache/save@v4
with:
path: ./shellcheck-latest
key: ${{ runner.os }}-shellcheck