Skip to content

Commit

Permalink
CI-Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragin-LundF authored Apr 30, 2020
1 parent 341a58d commit be07be3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI
on: push

jobs:
build:
name: "Validate Jenkins JobDSL Remote"

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: [1.8]

runs-on: ${{ matrix.os }}

steps:
- name: "git clone"
uses: actions/checkout@v1

- name: "setup jdk"
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}

- name: "./gradlew test"
uses: eskatos/gradle-command-action@v1
with:
arguments: --no-build-cache test
env:
CI: true

- name: "git diff --exit-code"
run: git diff --exit-code

0 comments on commit be07be3

Please sign in to comment.