Fix 51 校验子类时会忽略掉父类的字段 #57
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: run mvn test | |
on: | |
push: | |
branches: | |
- 'v*' | |
pull_request: | |
branches: | |
- 'v*' | |
- 'main' | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
run-mvn-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
cache: maven | |
- run: | | |
java -version | |
mvn -v | |
- run: mvn verify | |
- run: mvn clean test coveralls:report -DrepoToken="${{secrets.COVERALLS_TOKEN}}" -f pom.xml |