Merge pull request #54 from mhoshi-vm/dependabot/maven/org.webjars.np… #79
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: Test code and push to branch | |
on: | |
push: | |
branches: | |
- main | |
- springboot2 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Test code | |
run: mvn test -Dmaven.test.skip=false | |