diff options
author | Florian Rinke <develop@torui.de> | 2021-11-05 17:22:32 +0100 |
---|---|---|
committer | Florian Rinke <develop@torui.de> | 2021-11-05 17:22:32 +0100 |
commit | 177b21a02c45d12cb33394309237a494906d5481 (patch) | |
tree | 47052ce029c36e9afe735534450115608b4544c4 /.github | |
parent | d8e1e008d930ed0bfa05e0c0f2280157b4fc1151 (diff) | |
download | COFL-177b21a02c45d12cb33394309237a494906d5481.tar.gz COFL-177b21a02c45d12cb33394309237a494906d5481.tar.bz2 COFL-177b21a02c45d12cb33394309237a494906d5481.zip |
Added very simple Github Action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/do-build.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/do-build.yml b/.github/workflows/do-build.yml new file mode 100644 index 0000000..fb998ba --- /dev/null +++ b/.github/workflows/do-build.yml @@ -0,0 +1,16 @@ +name: Github Actions do build +on: [push] +jobs: + Run-Build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b + - name: Build with Gradle + run: ./gradlew build
\ No newline at end of file |