diff options
author | vitalyster | 2020-11-11 02:31:37 +0300 |
---|---|---|
committer | GitHub | 2020-11-11 02:31:37 +0300 |
commit | e3b7fb8ded8a9a9497228da3b0a503d9534e9973 (patch) | |
tree | 5f50b9ae44e7dce6220517cfe7ba2f15545528e4 /.github/workflows/ci.yml | |
parent | 07ebf86ab279811c365e8174807dbf36fc2f4ca4 (diff) |
CI: Setup
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..b708d975 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: gradle check |