forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.18 KB
/
unprivileged.yml
File metadata and controls
48 lines (43 loc) · 1.18 KB
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
38
39
40
41
42
43
44
45
46
47
48
name: unprivileged
on: [push, pull_request]
jobs:
lint-python:
container: gcr.io/kf-feast/feast-ci:latest
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make install-python-ci-dependencies
- name: Compile protos
run: make compile-protos-python
- name: Lint python
run: make lint-python
lint-go:
container: gcr.io/kf-feast/feast-ci:latest
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make install-go-ci-dependencies
- name: Lint go
run: make lint-go
unit-test-python:
runs-on: ubuntu-latest
needs: lint-python
container: gcr.io/kf-feast/feast-ci:latest
steps:
- uses: actions/checkout@v2
- name: Install python
run: make install-python
- name: Test python
run: make test-python
unit-test-go:
runs-on: ubuntu-latest
needs: lint-go
container: gcr.io/kf-feast/feast-ci:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make compile-protos-go
- name: Test go
run: make test-go