Add new job to testing PR check that tests with latest SNAPSHOT version of Drools #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test FEEL expressions | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
jbang-drools-stable: | |
runs-on: ubuntu-latest | |
name: Testing FEEL expressions in the MarkDown with JBang 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 FEEL expressions in the MarkDown with JBang 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 |