Skip to content

Upgrade to Java 8 and add GitHub Actions CI #4

Upgrade to Java 8 and add GitHub Actions CI

Upgrade to Java 8 and add GitHub Actions CI #4

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master, main ]
push:
branches: [ master, main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: '25'
distribution: 'temurin'
cache: maven
- name: Build and Test
run: mvn -B verify --file pom.xml
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: target/surefire-reports/
retention-days: 7