Skip to content

Commit cb4ebf6

Browse files
authored
ci: standardize FF CI (#63)
* ci: split unit and conformance ci Signed-off-by: Grant Timmerman <[email protected]> * ci: disable java 12/13 Signed-off-by: Grant Timmerman <[email protected]>
1 parent 974206e commit cb4ebf6

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/unit.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Java Unit CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
java: [
9+
11.x
10+
# 12.x,
11+
# 13.x
12+
]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up JDK ${{ matrix.java }}
16+
uses: actions/setup-java@v1
17+
with:
18+
java-version: ${{ matrix.java }}
19+
- name: Build with Maven
20+
run: (cd functions-framework-api/ && mvn install)
21+
- name: Test
22+
run: (cd invoker/ && mvn test)

0 commit comments

Comments
 (0)