perfin/.github/workflows/run-tests.yaml

25 lines
506 B
YAML
Raw Normal View History

2024-01-02 01:08:26 +00:00
name: Run Tests
on:
push:
branches:
2024-01-02 01:22:05 +00:00
- "*"
2024-01-02 01:08:26 +00:00
jobs:
maven-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
2024-01-02 01:08:26 +00:00
steps:
- name: Checkout Repository
2024-01-02 01:27:49 +00:00
uses: actions/checkout@v4
2024-01-02 01:08:26 +00:00
- name: Setup JDK 21
2024-01-02 01:27:49 +00:00
uses: actions/setup-java@v4
2024-01-02 01:08:26 +00:00
with:
java-version: 21
distribution: temurin
cache: maven
- name: Test with Maven
run: ./mvnw -B verify --file pom.xml