Skip to content

Commit

Permalink
Create GitHub Actions Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CorneliusNI authored Aug 26, 2023
1 parent 63b17f7 commit c59a87e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will build a Java project with Maven.

name: Java CI with Maven

on:
push:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn compile
- name: Clean
run: mvn clean

0 comments on commit c59a87e

Please sign in to comment.