22 lines
404 B
YAML
22 lines
404 B
YAML
|
name: Java CI with Maven
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
build_and_test:
|
||
|
name: Build and Test
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Set up JDK 11
|
||
|
uses: actions/setup-java@v4
|
||
|
with:
|
||
|
java-version: '17'
|
||
|
distribution: 'temurin'
|
||
|
cache: maven
|
||
|
- name: Build with Maven
|
||
|
run: mvn test
|