Fix[compat]: Java 21 compatibility #5
This file contains 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 CI with Maven | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Build Maven and copy output | |
run: bash build_and_out.sh | |
- name: Upload build output | |
uses: actions/upload-artifact@v1 | |
with: | |
name: caciocavallo | |
path: out |