-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (40 loc) · 987 Bytes
/
test.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
name: Test FEEL expressions
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
jbang-drools-stable:
runs-on: ubuntu-latest
name: Testing with Drools latest stable release
steps:
- name: checkout
uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: /root/.jbang
key: $-jbang-$
restore-keys: |
$-jbang-
- name: jbang
uses: jbangdev/jbang-action@v0.111.0
with:
script: test.java
jbang-drools-snapshot:
runs-on: ubuntu-latest
name: Testing with Drools latest SNAPSHOT release
steps:
- name: checkout
uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: /root/.jbang
key: $-jbang-$
restore-keys: |
$-jbang-
- name: jbang
uses: jbangdev/jbang-action@v0.111.0
with:
script: test.java
jbangargs: -Ddrools.version=999-SNAPSHOT