Bump faf-icebreaker image to v1.2.4 #1100
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Checks | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker/tilt:latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: azure/setup-helm@v5.0.1 | |
| - name: Create k8s Kind Cluster | |
| run: ctlptl create cluster kind --registry=ctlptl-registry | |
| - name: Cache Helm Output | |
| id: cache-helm-ooutput | |
| uses: actions/cache@v5 | |
| with: | |
| path: .helm-cache | |
| key: ${{ github.ref_name }} | |
| restore-keys: | | |
| develop | |
| ${{ github.base_ref }} | |
| - name: Test Using Local Config | |
| run: tilt ci --timeout "5m" | |