Skip to content

Enforce https

Enforce https #24

Workflow file for this run

name: Datacatalogue CI with Maven
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin' # This might need to be adjusted based on availability
- name: Cache Maven
uses: actions/cache@v2
with:
path: |
~/.m2/repository
!~/.m2/repository/org/projectname
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Test
run: mvn -B test