Remove deprecated API usage from UTwin client implementation #349
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ******************************************************************************** | |
| # Copyright (c) 2024 Contributors to the Eclipse Foundation | |
| # | |
| # See the NOTICE file(s) distributed with this work for additional | |
| # information regarding copyright ownership. | |
| # | |
| # This program and the accompanying materials are made available under the | |
| # terms of the Apache License Version 2.0 which is available at | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # *******************************************************************************/ | |
| name: Verify PR | |
| on: | |
| # the repository is configured to require a PR for | |
| # making changes to the main branch | |
| # so every check made here is effectively | |
| # made before merging to main | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| # [impl->req~up-language-ci-build~1] | |
| verify-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build and Test with Maven | |
| # the package goal includes running the tests | |
| # [impl->req~up-language-ci-test~1] | |
| # and also builds the JavaDocs | |
| # [impl->req~up-language-ci-api-docs~1] | |
| run: mvn -B package --file pom.xml |