[CI-Skip] Cleanup

This commit is contained in:
Alpha
2023-03-24 04:06:35 +00:00
parent 7c16b071f3
commit 1cbcdf51d8
11 changed files with 65 additions and 43 deletions

View File

@@ -2,7 +2,7 @@ name: Build Plazma
on:
push:
branches: [ "ver/*", "feat/*", "dev/*", "expr/*" ]
branches: [ "ver/*", "feat/*", "dev/*", "expr/*", "ench/*" ]
workflow_dispatch:
env:

37
.github/workflows/check.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
name: Test Gradle build script
on:
push:
branches: [ "ver/*", "feat/*", "dev/*", "expr/*", "ench/*" ]
workflow_dispatch:
jobs:
release:
strategy:
matrix:
base_jdk: [19]
graal: [latest]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout action
uses: actions/checkout@v3
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up GraalVM ${{ matrix.jdk }}
uses: graalvm/setup-graalvm@v1
with:
github-token: ${{ secrets.GH_PAT }}
java-version: ${{ matrix.base_jdk }}
version: ${{ matrix.graal }}
cache: 'gradle'
- name: Configure Git
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" && git config --global user.name "github-actions[bot]"
- name: Run Gradle
run: ./gradlew --stacktrace

View File

@@ -2,7 +2,7 @@ name: Test build with Normal JDK
on:
push:
branches: [ "ver/*", "feat/*", "dev/*", "expr/*" ]
branches: [ "ver/*", "feat/*", "dev/*", "expr/*", "ench/*" ]
workflow_dispatch:
env: