changed visibility of members on ConfigValue to public #74
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: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: BlvckBytes/GPEEE | |
- name: Install GPEEE into local repo | |
run: mvn install | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Test with Maven | |
run: mvn --batch-mode --update-snapshots test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |