Skip to content

[maven-release-plugin] prepare for next development iteration #297

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #297

Workflow file for this run

name: Atmosphere
on:
push:
branches: [ atmosphere-2.7.x ]
pull_request:
branches: [ atmosphere-2.7.x ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 18, 22]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Test with Maven
run: mvn -B test --file pom.xml