forked from FAForever/gitops-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (27 loc) · 694 Bytes
/
checks.yml
File metadata and controls
37 lines (27 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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.0
- 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"