change labs.waterdata to api.water #103
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: Maven Verify | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'src/**' | |
- 'pom.xml' | |
jobs: | |
nldi-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11.0.14' | |
distribution: 'temurin' | |
- name: Create docker network | |
run: docker network create --subnet=172.26.0.0/16 nldi | |
- name: Check Maven version | |
run: mvn -version | |
- name: Verify with Maven | |
run: mvn verify -f pom.xml |