Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,25 @@ on:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
os:
- ubuntu-latest
java-version:
- 11
- 17
- 21

runs-on: ${{ matrix.os }}

steps:

- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
java-version: 11
java-version: ${{ matrix.java-version }}
distribution: corretto
cache: maven

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ final TeamClient teamClient = organisationClient.createTeamClient();
teamClient.getMembership("username");
```

## Supported Java versions

This library is written and published with Java version 11. In our CI workflows, we execute
automated tests with the Java LTS versions 11, 17 and 21. Due to Java's backwards compatability,
this library can definitely be used in all the tested versions.

## Contributing

This project uses Maven. To run the tests locally, just run:
Expand Down