You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
354 B

  1. name: Pull Request CI
  2. on: [pull_request]
  3. jobs:
  4. build:
  5. name: Build
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v3
  9. - name: Set up JDK 17
  10. uses: actions/setup-java@v3
  11. with:
  12. distribution: 'temurin'
  13. java-version: '17'
  14. cache: 'maven'
  15. - name: Build with Maven
  16. run: mvn -B package