123456789101112131415161718192021222324 |
- name: Java CI with Maven
- on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- jobs:
- build:
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 8
- uses: actions/setup-java@v2
- with:
- java-version: '8'
- distribution: 'adopt'
- cache: maven
- - name: Build with Maven
- run: mvn -B package --file pom.xml
|