Skip to content

chore(ci): add workflow to label PRs with release version #79

chore(ci): add workflow to label PRs with release version

chore(ci): add workflow to label PRs with release version #79

Workflow file for this run

---
name: test
on:
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
# https://github.com/actions/checkout
uses: actions/checkout@v6
- name: Setup Java
# https://github.com/actions/setup-java
uses: actions/setup-java@v5
with:
java-version: 25
distribution: 'zulu'
cache: maven
- name: Run tests (lib)
run: mvn -B --no-transfer-progress test --file lib/pom.xml