Skip to content

Commit

Permalink
ci: Add Github Action to build & test PRs (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
crykn committed Oct 15, 2023
1 parent fc7135d commit ea6d4d2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 19 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build & Test

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

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0
with:
arguments: build
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit ea6d4d2

Please sign in to comment.