mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2026-06-08 07:47:39 -04:00
21 lines
397 B
YAML
21 lines
397 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v2
|
|
- name: Set up JDK 11.0.11
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11.0.11
|
|
- name: Run with Gradle
|
|
run: ./gradlew clean test --info
|