new Constants #80
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java 25 compile with Bash | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get code | |
uses: actions/checkout@v5 | |
- name: Set up JDK 25 | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'zulu' | |
java-version: '25' | |
- name: run build script | |
run: ./build-all.sh |