Skip to content

Merge pull request #1713 from smallrye/release/2.7.0-RC1 #850

Merge pull request #1713 from smallrye/release/2.7.0-RC1

Merge pull request #1713 from smallrye/release/2.7.0-RC1 #850

Workflow file for this run

---
name: Main branch continuous integration
on:
push:
branches:
- "main"
concurrency:
group: "ci-${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
build:
name: Test the main branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: maven
- name: Run the tests
run: ./mvnw --no-transfer-progress -s .build/maven-ci-settings.xml -B clean verify