Skip to content

Commit

Permalink
Create run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
charlestian23 committed Oct 10, 2023
1 parent b603f1a commit ef1be26
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Java CI with Gradle

on:
push:
branches:
- master, dev
pull_request:
branches:
- master, dev

jobs:
test:
runs-on: ubuntu-latest, windows-latest, macos-latest

steps:
- name: Check Out Code
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: 11

- name: Run Gradle Build and Tests
run: |
./gradlew clean build test

0 comments on commit ef1be26

Please sign in to comment.