cleaned code #26
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 | |
# Run mvn clean install on pull requests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Java for build | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build | |
run: mvn clean install | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |