chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.11… #245
This file contains 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
name: Run Tests | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main, release/*, bugfix/* ] | ||
pull_request: | ||
branches: [ main, release/*, bugfix/* ] | ||
paths-ignore: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'CODEOWNERS' | ||
- 'LICENSE' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
CodeQL: | ||
Check failure on line 22 in .github/workflows/verify.yaml GitHub Actions / Run TestsInvalid workflow file
|
||
uses: eclipse-edc/.github/.github/workflows/codeql-analysis.yml@main | ||
secrets: inherit | ||
Checkstyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: eclipse-edc/.github/.github/actions/setup-build@main | ||
- name: Run Checkstyle | ||
run: ./gradlew checkstyleMain checkstyleTest | ||
Unit-Tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: eclipse-edc/.github/.github/actions/setup-build@main | ||
- name: Run unit tests | ||
run: ./gradlew test | ||
Component-Tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: eclipse-edc/.github/.github/actions/setup-build@main | ||
- name: Component Tests | ||
run: ./gradlew -DincludeTags="ComponentTest" | ||
Integration-Tests: | ||
uses: ./.github/workflows/integration-tests.yaml | ||
secrets: inherit | ||
API-Tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: eclipse-edc/.github/.github/actions/setup-build@main | ||
- name: Component Tests | ||
run: ./gradlew test -DincludeTags="ApiTest" |