Skip to content

fix: incorrect transitive dependencies #475

fix: incorrect transitive dependencies

fix: incorrect transitive dependencies #475

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
workflow_dispatch: # allow this workflow to be called by other workflows
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
integration-tests:
runs-on: ubuntu-latest
name: Integration Tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Run integration tests
run: |
./mvnw -B verify -Pnative
env:
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}