Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Add pre-release CI config (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
milosmns authored Jul 11, 2020
1 parent 3f0b916 commit 6b26f71
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pre-release check

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: kssm
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 and check with Gradle
run: ./gradlew build

0 comments on commit 6b26f71

Please sign in to comment.