Some checks failed
Gitea Actions Demo / build-docker (push) Waiting to run
Cache Npx / task (push) Waiting to run
Gitea Actions Demo / setup (push) Failing after 2m53s
Gitea Actions Demo / test (push) Has been skipped
Gitea Actions Demo / build (push) Has been skipped
Test Java / build-image (push) Successful in 3m30s
23 lines
398 B
YAML
23 lines
398 B
YAML
name: Test Java
|
|
|
|
on:
|
|
push:
|
|
jobs:
|
|
build-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: zulu
|
|
java-version: 17
|
|
cache: gradle
|
|
|
|
- name: Run
|
|
run: |
|
|
java --version |