URLShortener/.github/workflows/maven.yml

26 lines
420 B
YAML
Raw Normal View History

2024-02-15 22:37:58 +05:30
name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2024-02-15 22:40:45 +05:30
- name: Set up JDK 21
2024-02-15 22:37:58 +05:30
uses: actions/setup-java@v3
with:
2024-02-15 22:40:45 +05:30
java-version: '21'
2024-02-15 22:37:58 +05:30
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
2024-02-15 22:47:35 +05:30