Skip to content

Commit d33f08c

Browse files
authored
Merge pull request #36 from diffblue/github-action
Add CI support for Github Actions
2 parents 198d541 + 0bf463e commit d33f08c

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build JBMC Java Models Library
2+
on:
3+
pull_request:
4+
branches: [ master ]
5+
6+
jobs:
7+
Build-Models-Library:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
- name: Setup Java environment
13+
uses: actions/setup-java@v2
14+
with:
15+
java-version: '16'
16+
distribution: 'adopt'
17+
- name: Build with Maven
18+
run: mvn package

.travis.yml

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

0 commit comments

Comments
 (0)