forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 2
30 lines (27 loc) · 785 Bytes
/
Copy pathunit_tests.yml
File metadata and controls
30 lines (27 loc) · 785 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
name: unit-tests
on: [push, pull_request]
jobs:
unit-test-python:
runs-on: ubuntu-latest
container: gcr.io/kf-feast/feast-ci:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make install-python-ci-dependencies
- name: Compile protos
run: make compile-protos-python
- name: Install Python
run: make install-python
- name: Test Python
run: make test-python
unit-test-go:
runs-on: ubuntu-latest
container: gcr.io/kf-feast/feast-ci:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make install-go-ci-dependencies
- name: Compile protos
run: make compile-protos-go
- name: Test
run: make test-go