Skip to content

chore(deps): update dependency apple_support to v1.17.1 #181

chore(deps): update dependency apple_support to v1.17.1

chore(deps): update dependency apple_support to v1.17.1 #181

name: Integration Tests Static
on:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
GIT_CLONE_PROTECTION_ACTIVE: false
jobs:
test:
name: Integration Tests Static
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Restore Cache Bazel output
id: restore-cache-bazel-output
uses: actions/cache/restore@v3
env:
cache-name: cache-bazel-output
with:
path: bazel-output-base
key: ${{ runner.os }}-integration-static-${{ env.cache-name }}
- name: make bootstrap
run: make bootstrap
- name: make integration-static
run: make integration-static
- name: Save Cache Bazel output
id: save-cache-bazel-output
uses: actions/cache/save@v3
if: always()
env:
cache-name: cache-bazel-output
with:
path: bazel-output-base
key: ${{ steps.restore-cache-bazel-output.outputs.cache-primary-key }}