Skip to content

Commit

Permalink
Testing these workflow things
Browse files Browse the repository at this point in the history
If this works out, I might be able to have it automatically make testing files late?
  • Loading branch information
Thutmose authored Jan 29, 2020
1 parent 41c121a commit 6c80d1c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Java CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 6c80d1c

Please sign in to comment.