Skip to content

Commit

Permalink
[TASK] Configure GitHub actions
Browse files Browse the repository at this point in the history
Adds initial GitHub actions workflow to test the package builds.

Resolves: #26
  • Loading branch information
dkd-friedrich committed May 16, 2024
1 parent c708b42 commit f783d7c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Solr TYPO3 Plugin Tests

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up JDK 11 for x64
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64

- name: Build with Maven
run: mvn -B package --file pom.xml

- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6

0 comments on commit f783d7c

Please sign in to comment.