Skip to content

Commit

Permalink
Create pull_request_ubuntu_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
keizer619 authored Aug 6, 2024
1 parent cbcc6da commit f9997f7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pull_request_ubuntu_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI - Pull request - Ubuntu

on:
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean install

0 comments on commit f9997f7

Please sign in to comment.