From 91ce14a7cf7aa59a021ff5738ef1229d9af64b3e Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 13 Aug 2020 14:32:55 +0200 Subject: [PATCH] chore: enable CI on PRs I don't believe we have any secrets, should be fine to enable tests on PRs provided by third party contributors. --- .github/workflows/ant.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 41f59c9d..12ca6edb 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -1,6 +1,6 @@ name: Java CI -on: [push] +on: [push, pull_request] jobs: build: @@ -19,4 +19,4 @@ jobs: run: ant -noinput -buildfile build.xml dist - name: Run tests timeout-minutes: 10 - run: ant -noinput -buildfile build.xml test \ No newline at end of file + run: ant -noinput -buildfile build.xml test