添加 .gitea/workflows/test-java.yml
Some checks failed
Some checks failed
This commit is contained in:
19
.gitea/workflows/test-java.yml
Normal file
19
.gitea/workflows/test-java.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
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@v3
|
||||
with:
|
||||
distribution: zulu
|
||||
java-version: 17
|
||||
cache: gradle
|
||||
|
||||
- name: Gradle Build
|
||||
run: |
|
||||
java --version
|
Reference in New Issue
Block a user