This is an automated email from the ASF dual-hosted git repository. jdanek pushed a commit to branch jdanekrh-patch-1 in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git
commit bade7792694c5024d16c167ce5da768298dc5675 Author: Jiří Daněk <[email protected]> AuthorDate: Fri Oct 18 13:06:55 2019 +0200 DISPATCH-1363 - Move Rat licence check from travis builds into GitHub Action --- .github/workflows/apache-rat:check.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/apache-rat:check.yml b/.github/workflows/apache-rat:check.yml new file mode 100644 index 0000000..2c4936d --- /dev/null +++ b/.github/workflows/apache-rat:check.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push, pull_request] + +jobs: + 'apache-rat:check': + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn apache-rat:check --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
