mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 02:44:50 +00:00
27 lines
468 B
YAML
27 lines
468 B
YAML
name: Run Checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
testing:
|
|
name: javamvn-unittests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Set up JDK 24
|
|
uses: actions/setup-java@v5
|
|
with:
|
|
java-version: '24'
|
|
distribution: 'temurin'
|
|
cache: maven
|
|
- name: Run Unittests
|
|
run: mvn -B test |