Skip to content

Commit

Permalink
ci: change to github actions (#52)
Browse files Browse the repository at this point in the history
* ci: change to github actions

Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>

* ci: add pull_request trigger too

Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>
  • Loading branch information
grant authored Aug 20, 2020
1 parent d4b5155 commit 118c407
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Build with Maven
run: (cd functions-framework-api/ && mvn install)
- name: Test
run: (cd invoker/ && mvn test)
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit 118c407

Please sign in to comment.