import uses hash instead of file name to decide if it was already loa… #645
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@v2} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: {java-version: '17', distribution: adopt} | |
- {name: Build with Maven, run: mvn -B package} | |
windows-latest: | |
runs-on: windows-latest | |
steps: | |
- {uses: actions/checkout@v2} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: {java-version: '17', distribution: adopt} | |
- {name: Build with Maven, run: mvn -B package} | |
windows-2022: | |
runs-on: windows-2022 | |
steps: | |
- {uses: actions/checkout@v2} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: {java-version: '17', distribution: adopt} | |
- {name: Build with Maven, run: mvn -B package} | |
macos-latest: | |
runs-on: macos-latest | |
steps: | |
- {uses: actions/checkout@v2} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: {java-version: '17', distribution: adopt} | |
- {name: Build with Maven, run: mvn -B package} | |
macos-11: | |
runs-on: macos-11 | |
steps: | |
- {uses: actions/checkout@v2} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: {java-version: '17', distribution: adopt} | |
- {name: Build with Maven, run: mvn -B package} |