Skip to content

Commit 0e445dd

Browse files
ci: setup github actions for continuous integration
resolves openequella#26
1 parent 5962179 commit 0e445dd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: openEQUELLA-toolbox CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- "**"
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build_and_check:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v2
19+
- name: Setup Java
20+
uses: actions/setup-java@v1
21+
with:
22+
java-version: 1.8
23+
- name: Build and Check
24+
run: ./gradlew build check

0 commit comments

Comments
 (0)