Slide 15
Slide 15 text
02 Swift 製 CLI ツールのビルド時間改善
- uses: actions/cache@v2
id: cli-tools-cache
with:
path: Tools/.build
key: ${{ runner.os }}-spm-${{ hashFiles(
'**/Tools/Package.resolved') }}
restore-keys: ${{ runner.os }}-spm-
- name: Build CLI tools managed by SwiftPM
if: steps.cli-tools-cache.outputs.cache-hit != 'true'
run: make build-cli-tools
GitHub Actions