Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Merge branch 'release/0.3' #9

Merge branch 'release/0.3'

Merge branch 'release/0.3' #9

Workflow file for this run

name: Regular dockstore-style build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ '17.0.4+8' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
# Step that does that actual cache save and restore
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with mvnw
run: ./mvnw clean install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2