mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 19:04:49 +00:00
Workflow
This commit is contained in:
27
.github/workflows/checks.yaml
vendored
Normal file
27
.github/workflows/checks.yaml
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
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
|
||||||
Reference in New Issue
Block a user