fixed imports in the module-info.java files and also the hashes in th… #747
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: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
ubuntu-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- {uses: actions/checkout@v4} | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: {java-version: '21', distribution: temurin} | |
- {name: Build with Maven, run: mvn -B package} | |
windows-latest: | |
runs-on: windows-latest | |
steps: | |
- {uses: actions/checkout@v4} | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: {java-version: '21', distribution: temurin} | |
- {name: Build with Maven, run: mvn -B package} | |
macos-latest: | |
runs-on: macos-latest | |
steps: | |
- {uses: actions/checkout@v4} | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: {java-version: '21', distribution: temurin} | |
- {name: Build with Maven, run: mvn -B package} |