Skip to content

Add GitHub actions for Dependabot and Maven build #1

Add GitHub actions for Dependabot and Maven build

Add GitHub actions for Dependabot and Maven build #1

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
permissions:
contents: read
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v6
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Start Redis Server
uses: supercharge/redis-github-action@v2
- name: Run Tests
run: mvn clean test -Dgithub=true