-
Notifications
You must be signed in to change notification settings - Fork 24
35 lines (35 loc) · 853 Bytes
/
ci.yaml
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
name: main
on:
pull_request:
push:
branches:
- 'main'
tags-ignore:
- '*'
jobs:
test:
name: Test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: aquaproj/[email protected]
with:
working_directory: ./codes/50_completed
aqua_version: v1.17.1
- run: make test
working-directory: ./codes/50_completed
tilt:
name: Run tilt ci
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: aquaproj/[email protected]
with:
working_directory: ./codes/10_tilt
aqua_version: v1.17.1
- run: make controller-gen
working-directory: ./codes/10_tilt
- run: make start
working-directory: ./codes/10_tilt
- run: tilt ci
working-directory: ./codes/10_tilt