Skip to content

Commit 2a0d1b1

Browse files
committed
Rename CI workflows
Signed-off-by: Willem Pienaar <git@willem.co>
1 parent b44074c commit 2a0d1b1

4 files changed

Lines changed: 28 additions & 26 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: master_only
1+
name: integration-tests
22

33
on:
44
push:
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: unprivileged
1+
name: linter
22

33
on: [push, pull_request]
44

@@ -23,26 +23,4 @@ jobs:
2323
- name: Install dependencies
2424
run: make install-go-ci-dependencies
2525
- name: Lint go
26-
run: make lint-go
27-
28-
unit-test-python:
29-
runs-on: ubuntu-latest
30-
needs: lint-python
31-
container: gcr.io/kf-feast/feast-ci:latest
32-
steps:
33-
- uses: actions/checkout@v2
34-
- name: Install python
35-
run: make install-python
36-
- name: Test python
37-
run: make test-python
38-
39-
unit-test-go:
40-
runs-on: ubuntu-latest
41-
needs: lint-go
42-
container: gcr.io/kf-feast/feast-ci:latest
43-
steps:
44-
- uses: actions/checkout@v2
45-
- name: Install dependencies
46-
run: make compile-protos-go
47-
- name: Test go
48-
run: make test-go
26+
run: make lint-go

.github/workflows/privileged.yml renamed to .github/workflows/pr_integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: privileged
1+
name: pr-integration-tests
22

33
on:
44
pull_request_target:

.github/workflows/unit_tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: unit-tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
unit-test-python:
7+
runs-on: ubuntu-latest
8+
container: gcr.io/kf-feast/feast-ci:latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Install python
12+
run: make install-python
13+
- name: Test python
14+
run: make test-python
15+
16+
unit-test-go:
17+
runs-on: ubuntu-latest
18+
container: gcr.io/kf-feast/feast-ci:latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Install dependencies
22+
run: make compile-protos-go
23+
- name: Test go
24+
run: make test-go

0 commit comments

Comments
 (0)